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!)
A216895 n - (sum of prime factors of n^2+1) is prime. 1
57, 117, 174, 192, 193, 212, 268, 336, 342, 360, 394, 408, 448, 498, 560, 606, 746, 748, 818, 822, 882, 924, 931, 1052, 1087, 1196, 1227, 1254, 1280, 1380, 1390, 1404, 1432, 1477, 1478, 1514, 1534, 1590, 1633, 1696, 1702, 1818, 1856, 1874, 1903, 2057, 2108 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Prime factors counted without multiplicity. - Harvey P. Dale, Jul 04 2017
LINKS
EXAMPLE
57 is in the sequence because the prime divisors of 57^2 + 1 = 3250 are {2, 5, 13}, and 57 - (2+5+13) = 37 is prime.
MAPLE
with(numtheory): for n from 1 to 2500 do:x:=n^2+1:y:=factorset(x):n1:=nops(y): s:=sum('y[i] ', 'i'=1..n1):if n> s and type(n-s, prime)=true then printf(`%d, `, n): else fi:od:
MATHEMATICA
spfpQ[n_]:=Module[{c=Total[FactorInteger[n^2+1][[All, 1]]]}, n>c && PrimeQ[ n-c]]; Select[Range[2500], spfpQ] (* Harvey P. Dale, Jul 04 2017 *)
CROSSREFS
Cf. A008472.
Sequence in context: A039535 A037990 A296298 * A044244 A044625 A304841
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 19 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 25 16:23 EDT 2024. Contains 371989 sequences. (Running on oeis4.)