OFFSET
1,1
COMMENTS
The corresponding pairs of primorials are (3#, 4#), (4#, 5#), (5#, 6#), (5#, 6#), (7#, 9#), (8#, 9#), (8#, 10#). No other terms found up to 23#. - Michel Marcus, Feb 21 2016
a(8) > 3203982595205562774973. - Sean A. Irvine, May 26 2022
LINKS
Sean A. Irvine, Java program (github)
EXAMPLE
31 = 30+1 = 21+10, where 30=30*1 and 210=21*10 are primorial numbers.
PROG
(PARI) isprimo(n) = {if (n==1, return (1)); if (!issquarefree(n), return(0)); f = factor(n); #f~ == primepi(vecmax(f[, 1])); }
isok(n) = {c = 0; for (na=1, n\2, if (isprimo(na*(n - na)), c++); if (c == 2, return(1)); ); } \\ Michel Marcus, Feb 20 2016
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Naohiro Nomoto, Sep 19 2000
STATUS
approved