login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A161952
Base-15 Armstrong or narcissistic numbers (written in base 10).
13
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 113, 128, 2755, 3052, 5059, 49074, 49089, 386862, 413951, 517902, 15219156, 18605333, 38009273, 40082196, 40310423, 40868227, 47527794, 100128060, 100128061, 100128188, 104189152, 105464820
OFFSET
1,2
COMMENTS
Whenever 15|a(n) (n = 32, 36, 40, 86, 100, 135, 143, 194, 197, 201), then a(n+1) = a(n) + 1. Zero also satisfies the definition (n = Sum_{i=1..k} d[i]^k where d[1..k] are the base-15 digits of n), but this sequence only considers positive terms. - M. F. Hasler, Nov 22 2019
LINKS
Joseph Myers, Table of n, a(n) for n = 1..202 (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
MATHEMATICA
Select[Range[10^7], # == Total[IntegerDigits[#, 15]^IntegerLength[#, 15]] &] (* Michael De Vlieger, Nov 04 2020 *)
PROG
(PARI) select( is_A161952(n)={n==vecsum([d^#n|d<-n=digits(n, 15)])}, [1..10^5]) \\ M. F. Hasler, Nov 22 2019
CROSSREFS
In other bases: A010344 (base 4), A010346 (base 5), A010348 (base 6), A010350 (base 7), A010354 (base 8), A010353 (base 9), A005188 (base 10), A161948 (base 11), A161949 (base 12), A161950 (base 13), A161951 (base 14), A161953 (base 16).
Sequence in context: A060695 A055646 A330336 * A043319 A044916 A065672
KEYWORD
base,fini,full,nonn
AUTHOR
Joseph Myers, Jun 22 2009
EXTENSIONS
Terms sorted in increasing order by Pontus von Brömssen, Mar 03 2019
STATUS
approved