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”).

A015877
Numbers k such that sigma(k) = sigma(k+9).
15
14, 16, 46, 446, 1146, 26766, 35805, 143605, 179086, 185946, 437745, 1187725, 1194646, 1327086, 1746946, 2201806, 2893605, 3003385, 3574725, 3730125, 4053586, 4928385, 5715325, 6220305, 7507946, 9423645, 9897186
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[10000000], DivisorSigma[1, #]==DivisorSigma[1, # + 9] &] (* Vincenzo Librandi, Mar 10 2014 *)
Position[Partition[DivisorSigma[1, Range[10^7]], 10, 1], _?(#[[1]] == #[[10]]&), {1}, Heads->False]//Flatten (* Harvey P. Dale, Aug 25 2016 *)
PROG
(PARI) is(n)=sigma(n)==sigma(n+9) \\ Charles R Greathouse IV, Mar 09 2014
KEYWORD
nonn
STATUS
approved