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.

A139410 Numbers n such that n = 4^d_1 + 4^d_2 + ... + 4^d_k where d_1d_2...d_k is the decimal expansion of n.

Original entry on oeis.org

4624, 595968
Offset: 1

Views

Author

Farideh Firoozbakht, May 11 2008

Keywords

Examples

			595968 = 4^5 + 4^9 + 4^5 + 4^9 + 4^6 + 4^8.
		

Programs

  • Mathematica
    Select[Range[596000],Total[4^IntegerDigits[#]]==#&] (* Harvey P. Dale, May 21 2021 *)