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!)
A367718 G.f. A(x) satisfies A(x) = 1 / ((1 + x) * (1 - x * (1 + x + x^2 + x^3) * A(x^4))). 2
1, 0, 2, 2, 6, 9, 20, 36, 72, 138, 269, 520, 1010, 1958, 3798, 7365, 14284, 27704, 53728, 104202, 202089, 391939, 760128, 1474208, 2859096, 5544986, 10754022, 20856528, 40449464, 78448346, 152143931, 295070345, 572264028, 1109857872, 2152475724, 4174545216 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = (-1)^n + Sum_{k=0..n-1} a(floor(k/4)) * a(n-1-k).
PROG
(PARI) a_vector(n) = my(v=vector(n+1)); for(i=0, n, v[i+1]=(-1)^i+sum(j=0, i-1, v[j\4+1]*v[i-j])); v;
CROSSREFS
Sequence in context: A359896 A339426 A000021 * A000022 A034805 A192659
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Nov 28 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 18:09 EDT 2024. Contains 372020 sequences. (Running on oeis4.)