login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


Number with digits abc...z such that n = (a+b+c+...+z+a^b+b^c+c^d+...+y^z)+(a*b*c*...*z*a^b*b^c*c^d*...*y^z).
0

%I #13 Aug 12 2016 13:40:58

%S 0,18,81,1323

%N Number with digits abc...z such that n = (a+b+c+...+z+a^b+b^c+c^d+...+y^z)+(a*b*c*...*z*a^b*b^c*c^d*...*y^z).

%C Another variant of narcissistic numbers.

%C No other terms below 10^5.

%C a(5), if it exists, is > 3*10^10. - _Lars Blomberg_, Aug 08 2016

%H José Camacho Medina's Matematico Fresnillense, <a href="http://matematicofresnillense.blogspot.mx/2016/04/otra-variante-de-numeros-narcisistas-18.html">Otra Variante de Números Narcisistas (in Spanish)</a>.

%e 18 is a term because 18 = (1+8+1^8)+(1*8*1^8);

%e 81 is a term because 81 = (8+1+8^1)+(8*1*8^1);

%e 1323 is a term because 1323 = (1+3+2+3+1^3+3^2+2^3)+(1*3*2*3*1^3*3^2*2^3).

%t CC = Table[( Sum[ Mod[(Floor[f/10^n]), 10] , {n, 0, Floor[Log[10, f]] }]), {f, 1, 1323}];

%t DD = Table[( Sum[ (Mod[(Floor[f/10^n]), 10] ) ^(Mod[(Floor[f/

%t 10^(n - 1)]), 10] ) , {n, 1, Floor[Log[10, f]] }]), {f, 1, 1323}];

%t EE = Table[( Product[ Mod[(Floor[f/10^n]), 10] , {n, 0,Floor[Log[10, f]] }]), {f, 1, 555}];

%t FF = Table[( Product[ (Mod[(Floor[f/10^n]), 10] ) ^(Mod[(Floor[f/10^(n - 1)]), 10] ) , {n, 1,Floor[Log[10, f]] }]), {f, 1, 1323}];

%t SUMA = (CC+DD) + (EE*FF)

%t RES = SUMA - Table[n, {n, 1, 1323}]

%t Position[SS, 0]

%Y Cf. A005188.

%K nonn,base,more

%O 1,2

%A _José de Jesús Camacho Medina_, Apr 08 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 21 04:44 EDT 2024. Contains 376079 sequences. (Running on oeis4.)