A335251 Numbers k such that k and k+1 have the same unitary abundance (A129468).
1, 20, 35, 143, 208, 2623, 5183, 27796, 11177983, 69677008, 920158207, 1099508482048
Offset: 1
Examples
1 is a term since 1 and 2 have the same unitary abundance: A129468(1) = usigma(1) - 2*1 = 1 - 2 = -1, and A129468(2) = usigma(2) - 2*2 = 3 - 4 = -1.
Programs
-
Mathematica
usigma[1] = 1; usigma[n_] := Times @@ (1 + Power @@@ FactorInteger[n]); udef[n_] := 2*n - usigma[n]; Select[Range[30000], udef[#] == udef[# + 1] &]
Extensions
a(12) from Giovanni Resta, May 29 2020
Comments