login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A196220
Integer quotients of k^2 by the sum of the prime distinct divisors of k^2+1, where k = A196219(n).
1
7, 18, 121, 2268, 13520, 1377, 8550, 5157, 7381, 8496, 76176, 83521, 161604, 284229, 1028196, 4092529, 275804, 274432, 336985, 1153476, 962948, 48841, 319225, 276676, 617796, 3946827, 684450, 156349, 632025, 1256454, 6368547, 244917, 2506180, 2256004, 5410947
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
a(n) = A196219(n)^2/A008472(A196219(n)^2 + 1). - Amiram Eldar, Mar 09 2020
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