A105324 Numbers n such that 2*reversal(n)=sigma(n).
6, 73, 483, 4074, 4473, 4623, 7993, 42813, 69855, 253782, 799993, 7999993, 46000023, 426000213, 4600000023, 6718967838, 42600000213, 46000000023, 79999999993, 426000000213
Offset: 1
Examples
253782 is in the sequence because reversal(253782)=287352; sigma(253782)=574704 & 2*287352=574704.
Programs
-
Mathematica
reversal[n_]:= FromDigits[Reverse[IntegerDigits[n]]]; Do[If[2* reversal[n]== DivisorSigma[1, n], Print[n]], {n, 1000000000}] Select[Range[8*10^6],2*IntegerReverse[#]==DivisorSigma[1,#]&] (* The program generates the first 12 terms of the sequence. *) (* Harvey P. Dale, Oct 29 2022 *)
Extensions
a(15)-a(19) from Donovan Johnson, Dec 21 2008
a(20) from Giovanni Resta, Oct 28 2012
Comments