login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A218833 Primes p such that 2*p is greater than the greatest prime factor of p^2 - 1 and p^2 + 1. 1
3, 7, 13, 17, 31, 41, 43, 47, 73, 83, 157, 173, 191, 193, 211, 233, 239, 241, 251, 269, 293, 307, 311, 313, 337, 401, 421, 431, 439, 443, 463, 467, 487, 491, 499, 509, 557, 563, 577, 593, 599, 601, 613, 647, 659, 691, 701, 743, 757, 787, 809, 811, 829, 853 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
3^2 - 1 = 2^3, 3^2 + 1 = 2*5 and 2*3 > 2 and 2*3 > 5
13^2 -1 = 2^3*3*7, 13^2 + 1 = 2*5*17 and 2*13 > 7 and 2*13 > 17
MATHEMATICA
Select[Prime[Range[PrimePi[1000]]], 2 # > FactorInteger[#^2 - 1][[-1, 1]] && 2 # > FactorInteger[#^2 + 1][[-1, 1]] &] (* T. D. Noe, Nov 07 2012 *)
PROG
(PARI) forprime(h=3, 2001, for(n=2, 2, a=h^n; b=a-1; c=a+1; d=vecmax(factor(b)[, 1]~); e=vecmax(factor(c)[, 1]~); g=h*n; if(g>d && g>e, print1(h, ", "))))
CROSSREFS
Sequence in context: A045422 A191071 A180543 * A113003 A045423 A214782
KEYWORD
nonn
AUTHOR
Robin Garcia, Nov 07 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 19:56 EDT 2024. Contains 371963 sequences. (Running on oeis4.)