login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A307773
Expansion of e.g.f. Sum_{k>=1} prime(k)*log(1/(1 - x))^k/k!.
4
2, 5, 18, 82, 454, 2960, 22212, 188568, 1786896, 18698116, 214149822, 2664667358, 35796803068, 516387315172, 7961576156330, 130655542040262, 2273957872532176, 41836619073742452, 811316702293124504, 16540499893106494782, 353673865103189710572, 7914396129656344633522
OFFSET
1,1
FORMULA
a(n) = Sum_{k=1..n} |Stirling1(n,k)|*prime(k).
MAPLE
a:= n-> add(ithprime(k)*abs(Stirling1(n, k)), k=1..n):
seq(a(n), n=1..30); # Alois P. Heinz, Apr 27 2019
MATHEMATICA
nmax = 22; Rest[CoefficientList[Series[Sum[Prime[k] Log[1/(1 - x)]^k/k!, {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!]
Table[Sum[Abs[StirlingS1[n, k]] Prime[k], {k, 1, n}], {n, 1, 22}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 27 2019
STATUS
approved