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!)
A353065 Euler transform of odd primes. 3
1, 3, 11, 32, 92, 239, 608, 1465, 3450, 7858, 17525, 38165, 81653, 171497, 354785, 723084, 1454642, 2889854, 5676607, 11031046, 21224439, 40453596, 76428636, 143192339, 266172016, 491072611, 899583306, 1636775949, 2958900040, 5316004485, 9494514599 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: Product_{k>=1} 1 / (1 - x^k)^prime(k+1).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(a(n-j)*add(
d*ithprime(d+1), d=numtheory[divisors](j)), j=1..n)/n)
end:
seq(a(n), n=0..30); # Alois P. Heinz, Apr 21 2022
MATHEMATICA
nmax = 30; CoefficientList[Series[Product[1/(1 - x^k)^Prime[k + 1], {k, 1, nmax}], {x, 0, nmax}], x]
a[0] = 1; a[n_] := a[n] = (1/n) Sum[Sum[d Prime[d + 1], {d, Divisors[k]}] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 30}]
CROSSREFS
Sequence in context: A120844 A110958 A141211 * A321645 A296315 A125671
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 21 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 June 9 03:53 EDT 2024. Contains 373227 sequences. (Running on oeis4.)