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!)
A361569 Expansion of e.g.f. exp(x^4/24 * (1+x)^4). 2
1, 0, 0, 0, 1, 20, 180, 840, 1715, 2520, 88200, 1940400, 29111775, 303603300, 2188286100, 12549537000, 143029511625, 3397035642000, 71419225878000, 1170096883956000, 15075357741068625, 163540869094102500, 2025016641129982500, 40912918773391665000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(n) = n! * Sum_{k=0..floor(n/4)} binomial(4*k,n-4*k)/(24^k * k!).
a(0) = 1; a(n) = ((n-1)!/24) * Sum_{k=4..n} k * binomial(4,k-4) * a(n-k)/(n-k)!.
a(n) = (n-1)*(n-2)*(n-3)/24 * (4*a(n-4) + 20*(n-4)*a(n-5) + 36*(n-4)*(n-5)*a(n-6) + 28*(n-4)*(n-5)*(n-6)*a(n-7) + 8*(n-4)*(n-5)*(n-6)*(n-7)*a(n-8)). -Seiichi Manyama, Jun 16 2024
PROG
(PARI) my(N=30, x='x+O('x^N)); Vec(serlaplace(exp(x^4/24*(1+x)^4)))
(PARI) a_vector(n) = my(v=vector(n+1)); v[1]=1; for(i=1, n, v[i+1]=(i-1)!/24*sum(j=4, i, j*binomial(4, j-4)*v[i-j+1]/(i-j)!)); v;
CROSSREFS
Cf. A361280.
Sequence in context: A159538 A091983 A037250 * A000144 A361609 A219581
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 16 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 July 26 15:46 EDT 2024. Contains 374635 sequences. (Running on oeis4.)