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!)
A351342 G.f. A(x) satisfies: A(x) = 1 + x + x^2 + x^3 * A(x/(1 - 2*x)) / (1 - 2*x). 3
1, 1, 1, 1, 3, 9, 27, 83, 271, 971, 3865, 16879, 78985, 388385, 1987201, 10561385, 58443891, 337724057, 2040085491, 12862712499, 84357800063, 573182197539, 4021203303593, 29062345301487, 216129411635057, 1653180368063361, 13003920016983361, 105158133803473329 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Shifts 3 places left under 2nd-order binomial transform.
LINKS
FORMULA
a(0) = a(1) = a(2) = 1; a(n) = Sum_{k=0..n-3} binomial(n-3,k) * 2^k * a(n-k-3).
MATHEMATICA
nmax = 27; A[_] = 0; Do[A[x_] = 1 + x + x^2 + x^3 A[x/(1 - 2 x)]/(1 - 2 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[n_] := a[n] = If[n < 3, 1, Sum[Binomial[n - 3, k] 2^k a[n - k - 3], {k, 0, n - 3}]]; Table[a[n], {n, 0, 27}]
CROSSREFS
Sequence in context: A171155 A131428 A099787 * A308520 A176826 A146786
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 08 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 April 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)