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!)
A291672 Numbers k such that 4 is the smallest decimal digit of k^4. 5
26, 46, 822, 1594, 9296, 29426, 46278, 161954, 289146, 835718, 958646, 2743904, 2764968, 5446346, 8175708, 15381676, 30590282, 52240108, 149140628, 260414482, 284539894, 299068782, 471886024, 490673642, 508339942, 827983028, 863811282, 868389594, 911303358, 1486895644 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..100 (first 62 terms from Chai Wah Wu)
EXAMPLE
26 is in the sequence because 26^4 = 456976, the smallest decimal digit of which is 4.
MATHEMATICA
Select[Range[10^6], Min[IntegerDigits[#^4]] == 4 &] (* Giovanni Resta, Aug 29 2017 *)
PROG
(PARI) select(k->vecmin(digits(k^4))==4, vector(1000000, k, k))
(Python)
A291672_list = [k for k in range(1, 10**6) if min(str(k**4)) == '4'] # Chai Wah Wu, Aug 29 2017
CROSSREFS
Sequence in context: A255988 A304673 A039458 * A159651 A118367 A316120
KEYWORD
nonn,base
AUTHOR
Colin Barker, Aug 29 2017
EXTENSIONS
a(16)-a(18) from Giovanni Resta, Aug 29 2017
a(19)-a(30) from Chai Wah Wu, Aug 29 2017
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 23 11:35 EDT 2024. Contains 371912 sequences. (Running on oeis4.)