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.

A159078 Number of perfect powers with distinct digits in base n.

Original entry on oeis.org

1, 1, 9, 8, 25, 50, 88, 297, 657, 1418, 3212, 8662, 24185, 64103, 183718
Offset: 2

Views

Author

Johan Särnbratt, Apr 04 2009

Keywords

Examples

			The 8 powers with unique digits in base 5 are 1, 4, 8, 9, 16, 27, 144, and 576; in base 5 these are 1, 4, 13, 14, 31, 102, 1304, and 4301.
		

Crossrefs

Programs

  • PARI
    okdigs(digs) = {for (i = 1, #digs-1, for (j = i+1, #digs, if (digs[j] == digs[i], return (0);););); return (1);}
    a(n) = {b = n; sols = Set([1]); vmax = b^b; pmax = ceil(log(vmax)/log(2)); for (p = 2, pmax, i = 2; while ((iep = i^p) < vmax, if (okdigs(digits(iep, b)), sols = Set(concat(sols, iep));); i++;);); #sols;} \\ Michel Marcus, Aug 19 2013

Extensions

a(11) - a(16) from Johan Särnbratt, Apr 21 2009