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!)
A323618 Expansion of e.g.f. (1 + x)*log(1 + x)*(2 + log(1 + x))/2. 0
0, 1, 2, -1, 1, -1, -2, 34, -324, 2988, -28944, 300816, -3371040, 40710240, -528439680, 7348717440, -109109064960, 1723814265600, -28888702617600, 512030734387200, -9572240647065600, 188274945999974400, -3887144020408320000, 84062926436751360000, -1900475323780239360000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{k=0..n} Stirling1(n,k)*A000217(k).
a(n) ~ -(-1)^n * log(n) * n! / n^2 * (1 + (gamma - 2)/log(n)), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Jan 20 2019
a(n) = (5-2*n)*a(n-1) - (n-3)^2*a(n-2) for n >= 4. - Robert Israel, Jan 20 2019
MAPLE
f:= gfun:-rectoproc({a(n) = (5-2*n)*a(n-1) - (n-3)^2*a(n-2), a(0)=0, a(1)=1, a(2)=2, a(3)=-1}, a(n), remember):
map(f, [$0..30]); # Robert Israel, Jan 20 2019
MATHEMATICA
nmax = 24; CoefficientList[Series[(1 + x) Log[1 + x] (2 + Log[1 + x])/2, {x, 0, nmax}], x] Range[0, nmax]!
Table[Sum[StirlingS1[n, k] k (k + 1)/2, {k, 0, n}], {n, 0, 24}]
Join[{0, 1, 2, -1}, RecurrenceTable[{a[n]==(5-2*n)*a[n-1]-(n-3)^2*a[n-2], a[2]==2, a[3]==-1}, a, {n, 4, 25}]] (* G. C. Greubel, Feb 07 2019 *)
PROG
(PARI) {a(n) = sum(k=0, n, stirling(n, k, 1)*binomial(k+1, 2))};
vector(30, n, n--; a(n)) \\ G. C. Greubel, Feb 07 2019
(Magma) [(&+[StirlingFirst(n, k)*Binomial(k+1, 2): k in [0..n]]): n in [0..25]]; // G. C. Greubel, Feb 07 2019
(Sage) [sum((-1)^(k+n)*stirling_number1(n, k)*binomial(k+1, 2) for k in (0..n)) for n in (0..25)] # G. C. Greubel, Feb 07 2019
CROSSREFS
Sequence in context: A105685 A228239 A173749 * A364650 A246270 A265752
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jan 20 2019
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 7 02:59 EDT 2024. Contains 373140 sequences. (Running on oeis4.)