A161951 Base-14 Armstrong or narcissistic numbers (written in base 10).
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 244, 793, 282007, 10362564, 1445712420, 29546248981, 164159496751, 342515735622, 359057049845, 216210334578515, 324075236456868, 338527182572746, 338609726265795, 382789516519507, 435198066019184, 526088332647250
Offset: 1
Links
- Joseph Myers, Table of n, a(n) for n=1..103 (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[2 * 10^7], # == Total[IntegerDigits[#, 14]^IntegerLength[#, 14]] &] (* Michael De Vlieger, Nov 04 2020 *)
-
PARI
select( is_A161951(n)={n==vecsum([d^#n|d<-n=digits(n,14)])}, [1..10^6\3]) \\ M. F. Hasler, Nov 22 2019
Comments