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!)
A351935 Expansion of e.g.f. exp(x / (1 - x^4/24)). 3
1, 1, 1, 1, 1, 6, 31, 106, 281, 1261, 10711, 71611, 350461, 1808236, 17037021, 170285116, 1293714241, 8653175441, 84433291741, 1063629264781, 11218379358721, 97926941650546, 1021280770603171, 14623420493573046, 197153396050112041, 2190425085571083901 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = Sum_{k=0..floor((n-1)/4)} (4*k+1)!/24^k * binomial(n-1,4*k) * a(n-1-4*k) for n > 4.
a(n) = n! * Sum_{k=0..floor(n/4)} binomial(n-3*k-1,k)/(24^k * (n-4*k)!). - Seiichi Manyama, Jun 08 2024
MATHEMATICA
m = 25; Range[0, m]! * CoefficientList[Series[Exp[x/(1 - x^4/24)], {x, 0, m}], x] (* Amiram Eldar, Feb 26 2022 *)
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(x/(1-x^4/24))))
(PARI) a(n) = if(n<5, 1, sum(k=0, (n-1)\4, (4*k+1)!/24^k*binomial(n-1, 4*k)*a(n-1-4*k)));
CROSSREFS
Cf. A275423.
Sequence in context: A303172 A354552 A143568 * A356608 A365301 A337574
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Feb 26 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 30 04:58 EDT 2024. Contains 373861 sequences. (Running on oeis4.)