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.

Showing 1-1 of 1 results.

A240963 Numbers n such that the decimal expansion of n^n contains no zeros.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 22
Offset: 1

Views

Author

Anthony Sand, Aug 05 2014

Keywords

Comments

A240962(a(n)) = 0.
The sequence seems to be finite; compare A007377 (n such that 2^n contains no 0).
For no reason I can fathom this is a subsequence of A053408. - Charles R Greathouse IV, Aug 21 2014

Examples

			1^1 = 1
2^2 = 4
3^3 = 27
4^4 = 256
5^5 = 3125
6^6 = 46656
7^7 = 823543
8^8 = 16777216
22^22 = 341427877364219557396646723584
		

Crossrefs

Programs

  • Mathematica
    Select[Range[10^4], If[Count[IntegerDigits[#^#], 0] == 0, True] &] (* Michael De Vlieger, Aug 07 2014 *)
  • PARI
    for(n=1,10^3,d=digits(n^n);if(vecmin(d),print1(n,", "))) \\ Derek Orr, Aug 05 2014
Showing 1-1 of 1 results.