OFFSET
1,1
COMMENTS
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..10000
EXAMPLE
36 = 2^2 * 3^2 is a product of primorials, therefore not in the sequence.
72 = 2^3 * 3^2 is not a term because it is a product of primorials.
100 = 2^2 * 5^2 is not in the sequence since it does not have a primorial kernel.
108 = 2^2 * 3*3 is in the sequence since it is not a product of primorials, but its squarefree kernel is 6, a primorial.
144 = 2^4 * 3^2 is not in the sequence since it is a product of primorials, etc.
MATHEMATICA
With[{nn = 2^20},
Select[
Select[
Rest@ Union@ Flatten@ Table[a^2*b^3, {b, nn^(1/3)}, {a, Sqrt[nn/b^3]}],
Not@*PrimePowerQ],
And[EvenQ[#1],
Union@ Differences@ PrimePi[#2[[All, 1]]] == {1}, !
AllTrue[Differences@ #2[[All, -1]], # <= 0 &]] & @@
{#, FactorInteger[#]} &] ]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Jan 22 2024
STATUS
approved