A064704 Numbers beginning and ending with their multiplicative digital root.
1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 88, 111, 232, 535, 575, 646, 686, 818, 838, 1111, 2132, 2312, 2472, 2692, 2742, 2962, 5135, 5175, 5315, 5715, 5795, 5975, 6146, 6186, 6226, 6246, 6416, 6426, 6696, 6776, 6816, 6966, 8118, 8138, 8278, 8318, 8728, 11111
Offset: 1
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
- Index entries for 10-automatic sequences.
Crossrefs
Cf. A031347.
Programs
-
Mathematica
dr[n_]:=NestWhile[Times@@IntegerDigits[#]&,n,#>9&];bemdrQ[n_]:=Module[ {idn=IntegerDigits[n]},First[idn]==Last[idn]==dr[n]]; Select[Range[ 12000], bemdrQ] (* Harvey P. Dale, Oct 21 2011 *)
Comments