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.

A161949 Base-12 Armstrong or narcissistic numbers (written in base 10).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 29, 125, 811, 944, 1539, 28733, 193084, 887690, 2536330, 6884751, 17116683, 5145662993, 25022977605, 39989277598, 294245206529, 301149802206, 394317605931, 429649124722, 446779986586
Offset: 1

Views

Author

Joseph Myers, Jun 22 2009

Keywords

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), A161950 (base 13), A161951 (base 14), A161952 (base 15), A161953 (base 16).

Programs

  • Mathematica
    Select[Range[10^7], # == Total[IntegerDigits[#, 12]^IntegerLength[#, 12]] &] (* Michael De Vlieger, Nov 04 2020 *)