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”).

A309368
a(n) = Sum_{d|n} prime(n/d)^d.
0
2, 7, 13, 32, 43, 129, 145, 405, 660, 1417, 2079, 5999, 8233, 18903, 37271, 74912, 131131, 300239, 524355, 1139985, 2180263, 4372491, 8388691, 17853809, 33715580, 68704969, 136183123, 274127445, 536871021, 1100025921, 2147483775, 4343912079, 8638792645, 17309012967, 34380645545
OFFSET
1,1
FORMULA
G.f.: Sum_{k>=1} prime(k)*x^k/(1 - prime(k)*x^k).
L.g.f.: -log(Product_{k>=1} (1 - prime(k)*x^k)^(1/k)).
a(n) ~ 2^n.
MATHEMATICA
Table[Sum[Prime[n/d]^d, {d, Divisors[n]}], {n, 1, 35}]
nmax = 35; CoefficientList[Series[Sum[Prime[k] x^k/(1 - Prime[k] x^k), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
nmax = 35; CoefficientList[Series[-Log[Product[(1 - Prime[k] x^k)^(1/k), {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax] // Rest
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 25 2019
STATUS
approved