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!)
A331689 E.g.f.: exp(x/(1 - x)) / (1 - 2*x). 3
1, 3, 15, 103, 897, 9471, 117703, 1685475, 27361953, 497111707, 10001175231, 220849928223, 5312868439585, 138337555830423, 3876986580776247, 116375171226474331, 3725295913465848513, 126686907674290095795, 4561317309742758852463, 173343622143918424951767 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} binomial(n,k)^2 * k! * A000522(n-k).
a(n) = Sum_{k=0..n} binomial(n,k) * k! * 2^k * A000262(n-k).
a(n) ~ n! * exp(1) * 2^n. - Vaclav Kotesovec, Jan 26 2020
MAPLE
b:= proc(n) b(n):= `if`(n<0, 0, 1+n*b(n-1)) end:
a:= n-> n!*add(binomial(n, k)*b(k)/k!, k=0..n):
seq(a(n), n=0..23); # Alois P. Heinz, Jan 24 2020
MATHEMATICA
nmax = 19; CoefficientList[Series[Exp[x/(1 - x)]/(1 - 2 x), {x, 0, nmax}], x] Range[0, nmax]!
A000522[0] = 1; A000522[n_] := Floor[Exp[1] n!]; a[n_] := Sum[Binomial[n, k]^2 k! A000522[n - k], {k, 0, n}]; Table[a[n], {n, 0, 19}]
CROSSREFS
Sequence in context: A372698 A343884 A358738 * A001274 A139766 A003276
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 24 2020
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 15 22:47 EDT 2024. Contains 372549 sequences. (Running on oeis4.)