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!)
A367658 G.f. A(x) satisfies A(x) = 1 / (1 - x - x * (1 + x + x^2 + x^3 + x^4) * A(x^5)). 3
1, 2, 5, 13, 34, 89, 234, 615, 1616, 4246, 11156, 29314, 77026, 202394, 531811, 1397387, 3671781, 9647988, 25351094, 66612640, 175031647, 459913889, 1208471657, 3175385173, 8343655339, 21923823599, 57607130438, 151368736483, 397737124030, 1045095727865 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-1} a(floor(k/5)) * a(n-1-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=v[i]+sum(j=0, i-1, v[j\5+1]*v[i-j])); v;
CROSSREFS
Sequence in context: A048575 A099496 A122367 * A114299 A112842 A097417
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 29 00:08 EDT 2024. Contains 372097 sequences. (Running on oeis4.)