A222174 Numbers n such that sigma(n) + sigma(n-1) = 3n, where sigma(n) = sum of divisors of n (A000203).
6, 34, 50, 236, 262, 386, 898, 8362, 26938, 46594, 80876, 5244548, 5462384, 17062316, 323987588, 1162300834, 1381439876
Offset: 1
Keywords
Programs
-
Mathematica
For[n=1, True, n++, If[DivisorSigma[1, n]+DivisorSigma[1, n-1]==3n, Print[n]]]
-
PARI
is(n)=sigma(n)+sigma(n-1)==3*n \\ Charles R Greathouse IV, May 13 2013
Extensions
a(12)-a(15) from Giovanni Resta, May 13 2013
a(16)-a(17) from Donovan Johnson, May 13 2013
Comments