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!)
A353406 Stirling transform of odd primes. 2
3, 8, 25, 91, 376, 1715, 8471, 44838, 252903, 1514213, 9590874, 64056173, 449804453, 3312346950, 25521479277, 205300781275, 1720450321356, 14986361037495, 135393159641569, 1266006310597506, 12228936468908781, 121823473948915769, 1249794986354577736 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
E.g.f.: Sum_{k>=1} prime(k+1) * (exp(x) - 1)^k / k!.
a(n) = Sum_{k=1..n} Stirling2(n,k) * prime(k+1).
MAPLE
b:= proc(n, m) option remember;
`if`(n=0, ithprime(m+1), m*b(n-1, m)+b(n-1, m+1))
end:
a:= n-> b(n-1, 1):
seq(a(n), n=1..23); # Alois P. Heinz, May 13 2022
MATHEMATICA
nmax = 23; CoefficientList[Series[Sum[Prime[k + 1] (Exp[x] - 1)^k/k!, {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
Table[Sum[StirlingS2[n, k] Prime[k + 1], {k, 1, n}], {n, 1, 23}]
CROSSREFS
Sequence in context: A033483 A130522 A006219 * A009268 A024430 A357591
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 07 2022
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)