Thread Closed

Explicit formula for Euler zigzag numbers(Up/down numbers)

 
Share Thread Thread Tools
Jul26-10, 07:27 AM   #1
 

Explicit formula for Euler zigzag numbers(Up/down numbers)


I have derived an explicit formula for the Euler zigzag numbers, the number of alternating permutations for n elements:
[tex] A_j=i^{j+1}\sum _{n=1}^{j+1} \sum _{k=0}^n \frac{C_k^n(n-2k)^{j+1}(-1)^k}{2^ni^nn} [/tex]

For details, please refer to my article in Voofie:

An Explicit Formula for the Euler zigzag numbers (Up/down numbers) from power series

I would like to ask, if my formula is new, or is it a well known result? Since I can't find it in Wikipedia or MathWorld. If it is an old formula, can anyone give me some reference to it?
 
PhysOrg.com
PhysOrg
mathematics news on PhysOrg.com

>> Mathematicians analyze social divisions using cell phone data
>> Can math models of gaming strategies be used to detect terrorism networks?
>> Mathematician proves there are infinitely many pairs of prime numbers less than 70 million units apart
Jul26-10, 07:58 AM   #2
 
Recognitions:
Gold Membership Gold Member
Homework Helper Homework Help
Science Advisor Science Advisor
Well, mathworld mentions something called the "Entringer numbers", in its article:
http://mathworld.wolfram.com/EulerZigzagNumber.html
It doesn't seem to be quite the same thing??
 
Jul26-10, 11:13 AM   #3
 
Recognitions:
Homework Helper Homework Help
Science Advisor Science Advisor
There are many formulas at Sloane's A000111 though I don't see yours, at least directly. But it may be there in disguised form.

Computationally, your formula is not competitive with some of the others listed there. For example, given

Code:
a(n)=local(v=[1], t); if(n<0, 0, for(k=2, n+2, t=0; v=vector(k, i, if(i>1, t+=v[k+1-i])));v[2])
A(j)=I^(j+1)*sum(n=1,j+1,sum(k=0,n,binomial(n,k)*(n-2*k)^(j+1)*(-1)^k/2^n/I^n/n))
your code A(500) takes four times longer than Somos' code a(500). I don't know if yet more efficient code exists.
 
Jul26-10, 12:51 PM   #4
 

Explicit formula for Euler zigzag numbers(Up/down numbers)


@arildno
Thank you for the link. I haven't read the "Entringer numbers" before. But I don't found explicit formula, and seems the Euler zigzag number is it's special case.

@CRGreathouse
I have read the link you send me before. Thank you. First, I found out the formula, not because it is computationally efficient. I am interested in the explicit form of it. Since the zigzag number sequence is solution to a few number of recurrence relation. And the Somo's code you mentioned used recurrence relation too. But I found none explicit form in the link.
 
Thread Closed
Thread Tools


Similar Threads for: Explicit formula for Euler zigzag numbers(Up/down numbers)
Thread Forum Replies
Does there exist a formula for the sum of n^m numbers? General Math 1
Bernoulli Numbers, Euler-Maclauring Formula - Math Methods class Calculus & Beyond Homework 4
Prim numbers formula Linear & Abstract Algebra 48
betti numbers and euler characterstic? General Math 1