OFFSET
1,1
COMMENTS
Generated by k = 7, 18, 187, 378, 1560, 1683, … (A196219).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..500 (calculated from the b-file at A196219)
FORMULA
EXAMPLE
For k = 378, the prime distinct divisors of 378^2 + 1 are 5, 17, 41 and 378^2 /(5+17+41) = 2268. Hence 2268 is in the sequence.
MAPLE
with(numtheory):for k from 1 to 120000 do: y:=factorset(k^2+1): s:=sum(y[i], i=1..nops(y)):if irem(k^2, s)=0 then printf(`%d, `, k^2/s):else fi:od:
MATHEMATICA
Select[Table[n^2/Total[Transpose[FactorInteger[n^2+1]][[1]]], {n, 10^5}], IntegerQ] (* Harvey P. Dale, Apr 18 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 29 2011
STATUS
approved