login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216435 Number of Dyck n-paths with equally spaced returns. 2
1, 1, 2, 3, 7, 15, 48, 133, 456, 1439, 5060, 16797, 60693, 208013, 760326, 2677217, 9879513, 35357671, 131763844, 477638701, 1790943777, 6566420517, 24748372638, 91482563641, 346597488614, 1289904685149, 4905215393598, 18370277279665, 70085754999907, 263747951750361 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0)=1, a(n) = Sum_{d|n} (binomial(2*d-2, d-1)/d)^(n/d) = Sum_{d|n} A000108(d-1)^(n/d) for n>=1.
EXAMPLE
The 3 Dyck 3-paths are UUUDDD*, UUDUDD* and UD*UD*UD* where * marks the returns; the paths UD*UUDD* and UUDD*UD* do not have equally spaced returns.
MAPLE
with(numtheory):
a:= n->`if`(n=0, 1, add((binomial(2*d-2, d-1)/d)^(n/d), d=divisors(n))):
seq(a(n), n=0..40); # Alois P. Heinz, Sep 10 2012
MATHEMATICA
a={1}; For[n=1, n<=29, ++n, t=0; d=Divisors[n]; For[i=1, i<=Length[d], ++i, t+= (Binomial[2*d[[i]]-2, d[[i]]-1]/d[[i]])^(n/d[[i]])]; a=Append[a, t]; ]; a
PROG
(PARI)
C(n)=binomial(2*n, n)/(n+1);
a(n)=if(n==0, 1, sumdiv(n, d, C(d-1)^(n/d) ) );
/* Joerg Arndt, Sep 30 2012 */
CROSSREFS
Cf. A000108.
Sequence in context: A213385 A045629 A034731 * A110888 A133736 A058698
KEYWORD
nonn
AUTHOR
David Scambler, Sep 10 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)