A161949 Base-12 Armstrong or narcissistic numbers (written in base 10).
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 29, 125, 811, 944, 1539, 28733, 193084, 887690, 2536330, 6884751, 17116683, 5145662993, 25022977605, 39989277598, 294245206529, 301149802206, 394317605931, 429649124722, 446779986586
Offset: 1
Links
- Joseph Myers, Table of n, a(n) for n = 1..87 (the full list of terms, from Winter)
- Henk Koppelaar, and Peyman Nasehpour, On Hardy's Apology Numbers, arXiv:2008.08187 [math.NT], 2020.
- Eric Weisstein's World of Mathematics, Narcissistic Number
- D. T. Winter, Table of Armstrong Numbers
Crossrefs
Programs
-
Mathematica
Select[Range[10^7], # == Total[IntegerDigits[#, 12]^IntegerLength[#, 12]] &] (* Michael De Vlieger, Nov 04 2020 *)