login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A295018
Squares whose largest digit is 8.
4
81, 484, 784, 841, 1681, 3481, 3844, 5184, 6084, 8100, 8281, 8464, 8836, 10816, 11881, 14884, 15876, 16384, 18225, 22801, 25281, 28224, 28561, 31684, 33856, 36481, 36864, 38025, 38416, 40804, 43681, 48400, 48841, 53824, 58081, 58564, 67081, 68121, 68644, 71824, 77284, 77841, 78400
OFFSET
1,1
LINKS
FORMULA
a(n) = A295008(n)^2.
MAPLE
Res:= NULL: count:= 0:
for n from 1 while count < 50 do
if max(convert(n^2, base, 10))=8 then
count:= count+1; Res:= Res, n^2;
fi
od:
Res; # Robert Israel, Jul 21 2019
MATHEMATICA
Select[Range[300]^2, Max[IntegerDigits[#]]==8&] (* Harvey P. Dale, Jul 08 2020 *)
PROG
(PARI) is_A295018(n)=issquare(n)&&n&&vecmax(digits(n))==8 \\ "&&n" avoids an error message for n=0.
CROSSREFS
Cf. A295008 (square roots of the terms), A277946 - A277948 (same for digit 2..4), A295015 - A295019 (same for digit 5..9).
Cf. A000290 (the squares).
Sequence in context: A250620 A237082 A236651 * A250613 A237077 A236646
KEYWORD
nonn,base
AUTHOR
M. F. Hasler, Nov 12 2017
STATUS
approved