OFFSET
1,2
COMMENTS
Terms calculated by Jeff Heleen.
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..8
Patrick De Geest, Numbers whose digits occur with same frequency
EXAMPLE
2955^5 = 225313610074846875 and digits 0, 1, 2, 3, 4, 5, 6, 7, and 8 each occur twice.
PROG
(Python)
g = agen() # agen() in A054212
print([next(g)**5 for n in range(1, 5)]) # Michael S. Branicky, Dec 17 2020
CROSSREFS
KEYWORD
nonn,base,hard
AUTHOR
Patrick De Geest, Feb 15 2000
EXTENSIONS
Offset corrected by Michel Marcus, Aug 12 2015
a(6)-a(8) from Michael S. Branicky, Dec 17 2020
STATUS
approved