Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A125094 Eigensequence of A061554 regarded as a triangle: a(n) = Sum_{k=0..n-1} A061554(n-1,k)*a(k) with a(0)=1. 1
1, 1, 2, 5, 13, 36, 104, 313, 977, 3152, 10486, 35880, 126039, 453725, 1671322, 6291148, 24170312, 94680426, 377788108, 1534169595, 6335718925, 26589240583, 113323479393, 490203781505, 2150975413846, 9569147610181, 43140286838567 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n-1} a(k)*C(n-1, floor[n/2 - (-1)^(n-k-1)*(k+1)/2] ).
EXAMPLE
a(4) = 3*(1) + 3*(1) + 1*(2) + 1*(5) = 13.
a(5) = 6*(1) + 4*(1) + 4*(2) + 1*(5) + 1*(13) = 36.
a(6) = 10*(1) + 10*(1) + 5*(2) + 5*(5) + 1*(13) + 1*(36) = 104.
Triangle version of A061554 begins:
1;
1, 1;
2, 1, 1;
3, 3, 1, 1;
6, 4, 4, 1, 1;
10, 10, 5, 5, 1, 1; ...
PROG
(PARI) {a(n)=if(n==0, 1, sum(k=0, n-1, a(k)*binomial(n-1, n\2+(-1)^(n-k)*((k+1)\2))))}
CROSSREFS
Cf. A061554.
Sequence in context: A136751 A154836 A087626 * A271941 A114465 A135310
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 20 2006
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 September 14 13:32 EDT 2024. Contains 375921 sequences. (Running on oeis4.)