OFFSET
1,1
LINKS
Tim Johannes Ohrtmann, Table of n, a(n) for n = 1..53569
Eric Weisstein's World of Mathematics, Narcissistic Number
Wikipedia, Narcissistic number
EXAMPLE
a(1) = 5 because this is the first number that is a multiple-digit narcissistic number in at least one base (3).
MATHEMATICA
Select[Range@ 162, Function[k, AnyTrue[Range[2, k], Total[#^Length@ #] &@ IntegerDigits[k, #] == k &]]] (* Version 10, or *)
Select[Range@ 162, Function[k, Total@ Boole[Total[#^Length@ #] &@ IntegerDigits[k, #] == k & /@ Range[2, k]] > 0]] (* Michael De Vlieger, Apr 30 2016 *)
PROG
(PARI) for(n=3, 1000000, k=0; for(z=2, n, y=n; j=0; L=List(); until(y==0, x=y%z; j++; listinsert(L, x, j); while(!((y%z)==0), y--); y=y/z); t=0; for(p=1, j, t+=L[p]^j); if(n==t, k++)); if(k>0, print1(n, ", ")))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Tim Johannes Ohrtmann, Mar 26 2015
STATUS
approved