A015915 Numbers k such that sigma(k) + 8 = sigma(k+8).
3, 5, 11, 23, 27, 29, 53, 59, 71, 89, 101, 131, 149, 173, 191, 233, 263, 269, 359, 389, 401, 431, 449, 479, 491, 563, 569, 593, 599, 653, 683, 701, 719, 743, 761, 821, 911, 929, 983, 1013, 1031, 1061, 1109, 1163, 1193, 1223, 1229, 1283, 1289
Offset: 1
Keywords
Examples
sigma(27) + 8 = 48 = sigma(27+8), so 27 is in the sequence.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
Select[Range[1300],DivisorSigma[1,#]+8==DivisorSigma[1,#+8]&] (* Harvey P. Dale, Jul 16 2011 *)
-
PARI
is(n)=sigma(n)+8==sigma(n+8) \\ Charles R Greathouse IV, Mar 11 2014
Comments