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!)
A360892 G.f. satisfies A(x) = 1 + x/(1 - x^3)^2 * A(x/(1 - x^3)). 3
1, 1, 1, 1, 3, 6, 10, 18, 42, 94, 193, 428, 1036, 2470, 5779, 14192, 36176, 91649, 233617, 613978, 1641492, 4396393, 11922501, 32969768, 92080274, 258774392, 736441673, 2123145058, 6168831095, 18067587851, 53493963264, 159884523503, 481343585105, 1461055679181 (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-2*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-2*j, j)*v[i-3*j])); v;
CROSSREFS
Sequence in context: A075111 A080014 A364403 * A132274 A253768 A091714
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 2 12:14 EDT 2024. Contains 374844 sequences. (Running on oeis4.)