The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A143571 E.g.f. satisfies A(x) = exp(x*A(x^7/7!)). 2
1, 1, 1, 1, 1, 1, 1, 1, 9, 73, 361, 1321, 3961, 10297, 24025, 77221, 926641, 10696401, 84365425, 499445857, 2395445521, 9778915441, 36584246161, 248210675593, 3971313933049, 54773770095001, 549282704399001, 4258482133019401, 27025791550397641 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,9
LINKS
FORMULA
a(0) = 1; a(n) = (n-1)! * Sum_{k=0..floor((n-1)/7)} (7*k+1) * a(k) * a(n-1-7*k) / (5040^k * k! * (n-1-7*k)!). - Seiichi Manyama, Nov 29 2023
MAPLE
A:= proc(n) option remember; if n<=0 then 1 else unapply(convert(
series(exp(x*A(n-7)(x^7/5040)), x, n+1), polynom), x) fi
end:
a:= n-> coeff(A(n)(x), x, n)*n!:
seq(a(n), n=0..34);
MATHEMATICA
A[n_] := A[n] = If[n <= 0, 1&, Function[Normal[Series[Exp[y*A[n-2][y^7/7!]], {y, 0, n+1}] /. y -> #]]]; a[n_] := Coefficient[A[n][x], x, n]*n!; Table[a[n], {n, 0, 34}] (* Jean-François Alcover, Feb 13 2014, after Maple *)
CROSSREFS
7th column of A143565.
Sequence in context: A096129 A365304 A291700 * A244202 A079927 A126641
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 24 2008
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 10 16:16 EDT 2024. Contains 373272 sequences. (Running on oeis4.)