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!)
A073501 Primes p such that the largest prime factor of p^2+1 is less than p. 7
7, 41, 43, 47, 73, 83, 157, 173, 191, 193, 211, 233, 239, 251, 293, 307, 313, 337, 401, 421, 431, 443, 463, 467, 499, 509, 557, 577, 593, 599, 601, 659, 701, 743, 757, 787, 811, 829, 853, 857, 863, 911, 919, 1087, 1109, 1123, 1223, 1229, 1277, 1297, 1301 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes p such that the largest prime factor of p+1 is less than p gives A065091, odd primes.
LINKS
MAPLE
filter:= proc(n) max(numtheory:-factorset(n^2+1))<n end proc:
select(filter, [seq(ithprime(i), i=1..1000)]); # Robert Israel, Aug 07 2019
MATHEMATICA
<<NumberTheory`NumberTheoryFunctions` Select[Prime[Range[250]], Max[PrimeFactorList[1 + #^2]] < # &] (* Ray Chandler, Jan 08 2005 *)
Select[Prime[Range[212]], Max[First /@ FactorInteger[#^2 + 1]] < # &] (* Jayanta Basu, Jul 01 2013 *)
PROG
(Magma) [p:p in PrimesUpTo(1500)|Max(PrimeDivisors(p^2+1)) lt p]; // Marius A. Burtea, Aug 07 2019
CROSSREFS
Sequence in context: A123747 A144421 A023251 * A080666 A224718 A272387
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, Aug 27 2002
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)