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!)
A300662 Expansion of 1/(1 - x - Sum_{k>=2} prime(k-1)*x^k). 7
1, 1, 3, 8, 22, 59, 160, 429, 1155, 3105, 8354, 22474, 60457, 162636, 437509, 1176941, 3166097, 8517138, 22912002, 61635707, 165806564, 446037175, 1199887133, 3227823181, 8683185454, 23358686444, 62837334885, 169039070970, 454732963567, 1223279724439, 3290751724917 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Invert transform of A008578.
LINKS
N. J. A. Sloane, Transforms
FORMULA
G.f.: 1/(1 - Sum_{k>=1} A008578(k)*x^k).
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, add(
`if`(j=1, 1, ithprime(j-1))*a(n-j), j=1..n))
end:
seq(a(n), n=0..35); # Alois P. Heinz, Mar 10 2018
MATHEMATICA
nmax = 30; CoefficientList[Series[1/(1 - x - Sum[Prime[k - 1] x^k, {k, 2, nmax}]), {x, 0, nmax}], x]
p[1] = 1; p[n_] := p[n] = Prime[n - 1]; a[n_] := a[n] = Sum[p[k] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 30}]
CROSSREFS
Sequence in context: A003227 A291399 A077848 * A055887 A318901 A278612
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 10 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 April 23 12:27 EDT 2024. Contains 371912 sequences. (Running on oeis4.)