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!)
A367652 G.f. A(x) satisfies A(x) = 1 / (1 - x * (1 + x + x^2) * A(x^3)). 5
1, 1, 2, 4, 8, 16, 32, 65, 131, 264, 534, 1078, 2176, 4396, 8877, 17925, 36202, 73108, 147636, 298152, 602108, 1215933, 2455552, 4958915, 10014374, 20223760, 40841302, 82477816, 166561622, 336366426, 679282324, 1371791274, 2770293218, 5594527784, 11297988864 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..n-1} a(floor(k/3)) * a(n-1-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, v[j\3+1]*v[i-j])); v;
CROSSREFS
Cf. A367659.
Sequence in context: A264701 A195904 A101333 * A023421 A098051 A329053
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 26 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 April 27 08:40 EDT 2024. Contains 372017 sequences. (Running on oeis4.)