OFFSET
1,1
COMMENTS
Are there any more terms not of the form k * 10^n for k in {2, 3}?
PROG
(Python)
A155149_list = [n for n in range(1, 10**6) if len(set(str(n**4))) == 3]
# Chai Wah Wu, Sep 27 2014
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Dmitry Kamenetsky, Jan 21 2009
EXTENSIONS
Comment and more terms from Charles R Greathouse IV, Nov 12 2010
a(21)-a(22) from Chai Wah Wu, Sep 27 2014
a(23)-a(26) from Michael S. Branicky, Jun 28 2023
STATUS
approved