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!)
A158304 Numbers k such that k^2 contains no digit greater than 4. 4
0, 1, 2, 10, 11, 12, 18, 20, 21, 32, 38, 48, 49, 100, 101, 102, 110, 111, 120, 149, 152, 179, 180, 182, 200, 201, 210, 318, 320, 321, 332, 338, 348, 351, 361, 362, 380, 451, 452, 462, 480, 482, 490, 548, 549, 649, 1000, 1001, 1002, 1010, 1011, 1012, 1020, 1021 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
MAPLE
A158304 := proc(n) option remember; if n= 1 then 0; else for a from procname(n-1)+1 do d := convert(convert(a^2, base, 10), set) ; if max(op(d)) <= 4 then return a; end if; end do; end if; end proc:
seq(A158304(n), n=1..100) ; # R. J. Mathar, May 23 2010
MATHEMATICA
Select[Range[0, 1100], Max[IntegerDigits[#^2]]<5&] (* Harvey P. Dale, Nov 06 2016 *)
CROSSREFS
Sequence in context: A121717 A217072 A106518 * A007089 A159952 A136820
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, May 23 2010
EXTENSIONS
Extended by several correspondents, May 24 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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)