OFFSET
1,1
EXAMPLE
The prime number 37 can be written as the sum of prime number 31 and superior highly composite number 6 and thus is not in this sequence.
PROG
(Python)
from sympy import *
SHCN = [2, 6, 12, 60, 120, 360, 2520, 5040, 55440, 720720]
for x in range(3, 16000, 2):
waysFound = 0
if isprime(x):
iterC = 0
while iterC < len(SHCN) and SHCN[iterC] < x:
if isprime(x - SHCN[iterC]):
waysFound += 1
iterC += 1
if waysFound == 0:
print(x)
CROSSREFS
KEYWORD
nonn
AUTHOR
Walter Robinson, Aug 31 2024
STATUS
approved