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!)
A354696 G.f. A(x) satisfies: A(x) = 1 + x * A(x^4/(1 - x)^4) / (1 - x)^4. 1
1, 1, 4, 10, 20, 36, 64, 120, 240, 499, 1060, 2314, 5252, 12360, 29632, 70992, 168096, 392465, 905940, 2075314, 4730052, 10735516, 24258688, 54553000, 122076240, 271914499, 603183508, 1333268098, 2937818900, 6455143760, 14146816640, 30929336736, 67473335104 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/4)} binomial(n+2,4*k+3) * a(k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=sum(j=0, (i-1)\4, binomial(i+2, 4*j+3)*v[j+1])); v;
CROSSREFS
Sequence in context: A143982 A000749 A360046 * A369851 A275934 A369693
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 03 2022
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 June 27 20:20 EDT 2024. Contains 373753 sequences. (Running on oeis4.)