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!)
A206246 Numbers n such that the greatest prime divisor p of n^2+1 has the property that (p - n)^2 + 1 = p. 0
1, 3, 7, 13, 21, 31, 43, 91, 111, 183, 211, 241, 273, 381, 421, 553, 601, 651, 703, 1261, 1333, 1561, 1641, 2863, 2971, 3081, 3193, 4291, 4423, 5403, 5551, 6973, 7141, 8011, 8191, 8743, 8931, 11991, 12211, 13341, 13573, 14281, 14521, 15253, 15501, 15751, 16003 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For the n > 1 in this sequence, n^2+1 is composite. The corresponding primes p are A002496(n) repeated two times for n > 1 : {2, 5, 5, 17, 17, 37, 37, 101, 101, 197,...}.
Because this sequence is connected with A002496, it is conjectured that the set of this numbers is infinite.
LINKS
EXAMPLE
31 is in the sequence because 31^2 + 1 = 2*13*37 and (37 - 31)^2 + 1 = 37.
43 is in the sequence because 43^2 + 1 = 2*5*5*37 and (37 - 43)^2 + 1 = 37.
MAPLE
with(numtheory):for n from 1 to 20000 do:x:=n^2+1:y:=factorset(x):n1:=nops(y):p:=y[n1]:q:=(p-n)^2+1:if q=p then printf(`%d, `, n): else fi:od:
MATHEMATICA
pn2pQ[n_]:=Module[{p=FactorInteger[n^2+1][[-1, 1]]}, (p-n)^2+1==p]; Select[ Range[20000], pn2pQ] (* Harvey P. Dale, Nov 20 2019 *)
CROSSREFS
Sequence in context: A247890 A353887 A063541 * A171965 A011898 A098577
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 05 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 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)