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!)
A303663 Expansion of (1/(1 - x))*Product_{k>=1} (1 - x^prime(k))/(1 - x^k). 1
1, 2, 3, 4, 6, 8, 11, 14, 19, 25, 33, 41, 53, 66, 83, 102, 128, 156, 193, 233, 285, 343, 416, 495, 597, 710, 849, 1003, 1194, 1404, 1662, 1946, 2291, 2675, 3137, 3646, 4260, 4939, 5744, 6637, 7697, 8868, 10250, 11778, 13570, 15558, 17877, 20437, 23423, 26727, 30550, 34781, 39669, 45068, 51287, 58157 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Partial sums of A002095.
Number of partitions of n into nonprime parts if there are two kinds of 1's.
LINKS
MAPLE
b:= proc(n, i) option remember; `if`(n=0 or i=1, n+1,
b(n, i-1)+`if`(isprime(i), 0, b(n-i, min(n-i, i))))
end:
a:= n-> b(n$2):
seq(a(n), n=0..60); # Alois P. Heinz, Apr 28 2018
MATHEMATICA
nmax = 55; CoefficientList[Series[1/(1 - x) Product[(1 - x^Prime[k])/(1 - x^k), {k, 1, nmax}], {x, 0, nmax}], x]
CROSSREFS
Sequence in context: A035945 A094707 A353864 * A117995 A033834 A127419
KEYWORD
nonn,easy
AUTHOR
Ilya Gutkovskiy, Apr 28 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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)