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!)
A354695 G.f. A(x) satisfies: A(x) = 1 + x * A(x^3/(1 - x)^3) / (1 - x)^3. 1
1, 1, 3, 6, 11, 21, 42, 87, 189, 432, 1018, 2415, 5694, 13297, 30768, 70626, 161011, 364977, 823536, 1851706, 4152972, 9298653, 20800758, 46516437, 104044590, 232856189, 521601174, 1169670645, 2626188319, 5904269526, 13292581605, 29968831278, 67663806228 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/3)} binomial(n+1,3*k+2) * a(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+2)*v[j+1])); v;
CROSSREFS
Sequence in context: A293320 A024495 A360045 * A293066 A104253 A283668
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 03 2022
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 June 27 20:20 EDT 2024. Contains 373753 sequences. (Running on oeis4.)