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!)
A367691 G.f. A(x) satisfies A(x) = 1 / ((1 - x) * (1 - x * A(x^3))). 3
1, 2, 3, 4, 7, 12, 19, 31, 52, 86, 141, 233, 386, 639, 1057, 1749, 2896, 4795, 7937, 13138, 21751, 36010, 59613, 98688, 163380, 270479, 447779, 741300, 1227231, 2031697, 3363494, 5568295, 9218373, 15261119, 25264942, 41826373, 69244006, 114634194, 189778123 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 1 + Sum_{k=0..floor((n-1)/3)} a(k) * a(n-1-3*k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=1+sum(j=0, (i-1)\3, v[j+1]*v[i-3*j])); v;
CROSSREFS
Cf. A367659.
Sequence in context: A293411 A227047 A298304 * A307970 A216604 A211695
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 27 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 July 7 16:23 EDT 2024. Contains 374107 sequences. (Running on oeis4.)