[go: up one dir, main page]

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!)
A318913 Expansion of e.g.f. Product_{k>=1} 1/(1 - x^prime(k))^(1/prime(k)). 5
1, 0, 1, 2, 9, 44, 385, 1854, 18193, 153656, 1924641, 17123930, 276117721, 2880135972, 51150361249, 738748900694, 11608748988705, 198747251005424, 4029150617813953, 67937635488741426, 1607525018948543401, 32739373317847964060, 757174325538283357761, 16444280000832495199982 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
E.g.f.: exp(Sum_{k>=1} omega(k)*x^k/k), where omega(k) = number of distinct primes dividing k (A001221).
MAPLE
seq(n!*coeff(series(mul(1/(1-x^ithprime(k))^(1/ithprime(k)), k=1..100), x=0, 24), x, n), n=0..23); # Paolo P. Lava, Jan 09 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[Product[1/(1 - x^Prime[k])^(1/Prime[k]), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 23; CoefficientList[Series[Exp[Sum[PrimeNu[k] x^k/k, {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = (n - 1)! Sum[PrimeNu[k] a[n - k]/(n - k)!, {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 23}]
PROG
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(1/prod(k=1, N, (1-isprime(k)*x^k)^(1/k)))) \\ Seiichi Manyama, Feb 28 2022
(PARI) my(N=40, x='x+O('x^N)); Vec(serlaplace(exp(sum(k=1, N, omega(k)*x^k/k)))) \\ Seiichi Manyama, Feb 28 2022
CROSSREFS
Sequence in context: A360684 A357682 A322613 * A327940 A354623 A088369
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 05 2018
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 August 29 13:17 EDT 2024. Contains 375517 sequences. (Running on oeis4.)