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!)
A360889 G.f. satisfies A(x) = 1 + x * (1 + x^3)^2 * A(x * (1 + x^3)). 2
1, 1, 1, 1, 3, 6, 10, 16, 37, 85, 175, 365, 865, 2090, 4826, 11447, 28797, 73086, 183422, 471462, 1249792, 3329832, 8898534, 24244771, 67210802, 187336493, 526399475, 1501301887, 4329346255, 12565028776, 36807317140, 109047854266, 325773015735, 980062229742 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor(n-1)/3} binomial(n+1-3*k,k) * a(n-1-3*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)\3, binomial(i+1-3*j, j)*v[i-3*j])); v;
CROSSREFS
Sequence in context: A119971 A318290 A291986 * A094272 A236326 A308699
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 25 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 August 14 21:59 EDT 2024. Contains 375167 sequences. (Running on oeis4.)