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

A015881
Numbers k such that sigma(k) = sigma(k+11).
15
28, 154, 466, 874, 958, 1054, 2266, 2878, 11505, 12754, 14674, 17974, 21154, 21778, 29223, 29535, 31725, 32714, 39658, 43186, 48004, 52018, 62338, 70198, 126795, 132783, 163251, 164818, 207603, 212938, 221595, 272685, 274527
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[300000], DivisorSigma[1, #]==DivisorSigma[1, # + 11] &] (* Vincenzo Librandi, Mar 10 2014 *)
Position[Partition[DivisorSigma[1, Range[300000]], 12, 1], _?(First[#]== Last[#]&), 1, Heads->False]//Flatten (* Harvey P. Dale, Aug 20 2017 *)
PROG
(PARI) is(n)=sigma(n)==sigma(n+11) \\ Charles R Greathouse IV, Mar 09 2014
KEYWORD
nonn
STATUS
approved