OFFSET
1,1
COMMENTS
Such numbers are odd and have at least three prime factors.
Problem: are there infinitely many such numbers?
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..50
PROG
(PARI) isok(n) = {if (issquarefree(n) && !isprime(n), my(f = factor(n)); for (k=1, #f~, if ((n^2-1) % (f[k, 1]^2-1), return (0)); ); return (1); ); } \\ Michel Marcus, May 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Thomas Ordowski, May 20 2017
EXTENSIONS
More terms from Michel Marcus, May 20 2017
a(14)-a(26) from Giovanni Resta, May 20 2017
STATUS
approved