login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A155148 Numbers n such that n^4 has exactly 2 different decimal digits. 2
2, 3, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000, 10000000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
for n from 1 do convert(convert(n^4, base, 10), set) ; if nops(%) = 2 then print(n) ; fi; od: # R. J. Mathar, Feb 08 2009
PROG
(Python)
A155148_list, m = [], [24, -36, 14, -1, 0]
for n in range(1, 10**6+1):
....for i in range(4):
........m[i+1] += m[i]
....if len(set(str(m[-1]))) == 2:
........A155148_list.append(n) # Chai Wah Wu, Nov 05 2014
CROSSREFS
Sequence in context: A270356 A333332 A229220 * A076927 A064647 A119810
KEYWORD
nonn,base
AUTHOR
Dmitry Kamenetsky, Jan 21 2009
EXTENSIONS
Two more terms from R. J. Mathar, Feb 08 2009
a(9)-a(12) from Charles R Greathouse IV, Aug 01 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)