A076629 Duplicate of A067816.
1, 5, 8585, 16119, 29886159
Offset: 1
This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
Number 22 is in sequence because sigma(22+2) - sigma(22) = 60 - 36 = 24 = 22 + 2.
[n:n in[1..10^7] | SumOfDivisors(n+2)-SumOfDivisors(n) eq n+2]
Select[Range[6*10^6], DivisorSigma[1, # + 2] - DivisorSigma[1, #] == # + 2 &] (* Jake L Lande, Jun 30 2024 *)
for(n=1,10^7,if(sigma(n+2)-sigma(n)==n+2,print1(n,", "))) \\ Derek Orr, Sep 05 2014
a(9) = 2 because there are two numbers m (5, 6) with antisigma(m) = 9.
Sequence of numbers k < 10^7 such that sigma(k+n) - sigma(k) = k + n for 1 <= n <= 10: n = 1: 1, 5, 8585, 16119, ... (A067816). n = 2: 1, 2, 22, 14926, 31048, 69106, 246262, 5860168, ... (A246852). n = 3: 7, 6285, 4693485, ... (A246853). n = 4: 1, 4, 26, 122, 146, 458, 746, 3746, 47612, ... (A246854). n = 5: 3577, 14773, 2843579, ... (A246855). n = 6: 1, 3, 114, 116058, 340014, ... n = 7: 25, 65017, ... n = 8: 8, 34, 76, 13474, 19042, ... n = 9: 13, 1743, 1773, 4323, 53175, 109035, 138535, ... n = 10: 1, 20, 1958, 35150, 49010, 246686, 1030046, 1240694, ...
Number 7 is in sequence because sigma(7+3) - sigma(7) = 18 - 8 = 10 = 7 + 3.
[n:n in[1..10^7] | SumOfDivisors(n+3)-SumOfDivisors(n) eq n+3]
for(n=1,10^7,if(sigma(n+3)-sigma(n)==n+3,print1(n,", "))) \\ Derek Orr, Sep 05 2014
Number 26 is in sequence because sigma(26+4) - sigma(26) = 72 - 42 = 30 = 26 + 4.
[n:n in[1..10^7] | SumOfDivisors(n+4)-SumOfDivisors(n) eq n+4]
for(n=1,10^7,if(sigma(n+4)-sigma(n)==n+4,print1(n,", "))) \\ Derek Orr, Sep 05 2014
Number 3577 is in sequence because sigma(3577+5) - sigma(3577) = 7800 - 4218 = 3582 = 3577 + 5.
[n:n in[1..10^7] | SumOfDivisors(n+5)-SumOfDivisors(n) eq n+5];
Select[Range[285*10^4],DivisorSigma[1,#+5]-DivisorSigma[1,#]==#+5&] (* Harvey P. Dale, Jun 21 2024 *)
for(n=1,10^7,if(sigma(n+5)-sigma(n)==n+5,print1(n,", "))) \\ Derek Orr, Sep 05 2014
6 is in sequence because antisigma(6) = antisigma(5) = 9.
36844389 is in the sequence because 36844389 = antisigma(8585) = antisigma(8586).
Comments