OFFSET
1,1
COMMENTS
The terms were computed using Filip Najman's list, see the link.
LINKS
Filip Najman, Home Page (gives all numbers n such that n^2-1 has no prime factor greater than 97)
EXAMPLE
a(6)=8191 because 8190 = 2*3^2*5*7*13, 8192=2^13 and prime(6)=13.
PROG
(PARI)
/* up to term for p=97 */
/* S[] is the list computed by Filip Najman (16223 elements) */
S=[2, 3, 4, ... , 332110803172167361, 19182937474703818751];
lpf(n)={ vecmax(factor(n)[, 1]) } /* largest prime factor */
{ forprime (p=2, 97,
t = 0;
for (n=1, #S, if ( lpf(S[n]^2-1)==p && isprime(S[n]), t=n ); );
print1(S[t], ", ");
); }
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Joerg Arndt, Jul 03 2012
STATUS
approved