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!)
A001063 E.g.f. satisfies A'(x) = A(x/(1-x)). 5
1, 1, 1, 3, 15, 111, 1131, 15081, 253473, 5220225, 128886921, 3749014251, 126648293391, 4909623331023, 216189866951235, 10718939718977121, 593865369943409601, 36520856568972350721, 2478236630512178688273, 184588566642520989171795, 15020141103053997234030351 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Sequence shifts left when x is replaced by x/(1-x) in e.g.f.
LINKS
P. J. Cameron, Sequence operators from groups, Linear Alg. Applic., 226-228 (1995), 109-113.
FORMULA
a(n+1) = Sum_{k=0..n} n!/k!*binomial(n-1, k-1)*a(k). - Vladeta Jovovic, Sep 03 2005
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
(n-1)!/k!*binomial(n-2, k-1)*a(k), k=0..n-1))
end:
seq(a(n), n=0..20); # Alois P. Heinz, Feb 10 2015
MATHEMATICA
nmax=20; b = ConstantArray[0, nmax+2]; b[[1]]=1; Do[b[[n+2]] = Sum[n!/k!*Binomial[n-1, k-1]*b[[k+1]], {k, 0, n}], {n, 0, nmax}]; b (* Vaclav Kotesovec, Mar 02 2014 *)
CROSSREFS
Sequence in context: A370877 A254789 A112936 * A130168 A267083 A089945
KEYWORD
nonn,eigen
AUTHOR
EXTENSIONS
More terms from Christian G. Bower, Mar 15 1999
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 May 13 09:49 EDT 2024. Contains 372504 sequences. (Running on oeis4.)