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!)
A352429 a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/4)} binomial(n,4*k+1) * a(n-4*k-1). 5
1, 1, 2, 6, 24, 121, 732, 5166, 41664, 378001, 3810512, 42253926, 511139904, 6698457481, 94535404992, 1429477706286, 23056267551744, 395120495014561, 7169579673404672, 137321623511274246, 2768602189953629184, 58609968225266985241, 1299827736206335767552, 30137364376923272989806 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: 1 / (1 - Sum_{k>=0} x^(4*k+1) / (4*k+1)!).
E.g.f.: 1 / (1 - (sin(x) + sinh(x)) / 2).
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, 4 k + 1] a[n - 4 k - 1], {k, 0, Floor[(n - 1)/4]}]; Table[a[n], {n, 0, 23}]
nmax = 23; CoefficientList[Series[1/(1 - Sum[x^(4 k + 1)/(4 k + 1)!, {k, 0, nmax}]), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/(1-sum(k=0, N\4, x^(4*k+1)/(4*k+1)!)))) \\ Seiichi Manyama, Mar 23 2022
CROSSREFS
Sequence in context: A357922 A275753 A349089 * A352437 A144167 A104983
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 16 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 July 28 18:14 EDT 2024. Contains 374726 sequences. (Running on oeis4.)