OFFSET
0,14
COMMENTS
Conjecture: a(n) > 0 for all n > 30.
LINKS
Robert Israel, Table of n, a(n) for n = 0..10000
Ilya Gutkovskiy, Extended graphical example
Eric Weisstein's World of Mathematics, Semiprime
Eric Weisstein's World of Mathematics, Squarefree
EXAMPLE
a(17) = 4 because we have [15, 2], [14, 3], [11, 6] and [10, 7].
MAPLE
N:= 200: # for a(0)..a(N)
P:= select(isprime, [2, seq(i, i=3..N, 2)]): nP:= nops(P):
SFS:= NULL: j:= nP:
for i from 1 to nP while j > 0 do
while P[i]*P[j] > N do j:= j-1; if j = 0 then break fi; od:
SFS:= SFS, op(map(`*`, P[1..min(i-1, j)], P[i]))
od:
gS:= add(x^i, i=[SFS]):
gP:= add(x^P[i], i=1..nP):
g:= gP*gS:
[seq(coeff(g, x, i), i=0..N)]; # Robert Israel, Jun 15 2020
MATHEMATICA
nmax = 108; CoefficientList[Series[Sum[x^Prime[k], {k, 1, nmax}] Sum[MoebiusMu[k]^2 Floor[2/PrimeOmega[k]] Floor[PrimeOmega[k]/2] x^k, {k, 2, nmax}], {x, 0, nmax}], x]
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Ilya Gutkovskiy, Feb 15 2017
STATUS
approved