cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A048341 Equal to the sum of its digits raised to its reversed digits power (0^0=1).

Original entry on oeis.org

1, 48625, 397612
Offset: 0

Views

Author

Patrick De Geest, Feb 15 1999

Keywords

Examples

			48625 = 4^5 + 8^2 + 6^6 + 2^8 + 5^4.
		

Crossrefs

Programs

  • Mathematica
    sdrdp[n_]:=Module[{idn=IntegerDigits[n]},Total[#[[1]]^#[[2]]&/@(Thread[ {idn,Reverse[idn]}]/.{0,0}->{1,1})]]; Select[Range[400000],# == sdrdp[#]&] (* Harvey P. Dale, Jul 31 2013 *)