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!)
A367715 G.f. A(x) satisfies A(x) = 1 / ((1 - x) * (1 - x * (1 + x + x^2 + x^3) * A(x^4))). 3
1, 2, 4, 8, 16, 33, 68, 140, 288, 594, 1225, 2526, 5208, 10740, 22148, 45673, 94184, 194224, 400524, 825950, 1703249, 3512395, 7243168, 14936668, 30801992, 63519044, 130987274, 270118452, 557031032, 1148694482, 2368807011, 4884890405, 10073490200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 1 + Sum_{k=0..n-1} a(floor(k/4)) * a(n-1-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=1+sum(j=0, i-1, v[j\4+1]*v[i-j])); v;
CROSSREFS
Sequence in context: A324406 A182442 A098588 * A126683 A005821 A177794
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 28 2023
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 May 11 09:37 EDT 2024. Contains 372392 sequences. (Running on oeis4.)