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!)
A273358 Numbers n such that the decimal number concat(3,n) is a square. 8
6, 24, 61, 136, 249, 364, 481, 600, 721, 844, 969, 1329, 1684, 2041, 2400, 2761, 3124, 3489, 3856, 4225, 4596, 4969, 5344, 5721, 6100, 6481, 6864, 7249, 7636, 8025, 8416, 8809, 9204, 9601, 10249, 11364, 12481, 13600, 14721, 15844, 16969, 18096 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Elements are squares of integers in (sqrt(31), sqrt(40)) * sqrt(10)^k without the leading 3 elements for nonnegative k. - David A. Corneth, May 20 2016
LINKS
EXAMPLE
61 is a member because 361 = 19^2 is a square.
0 is not a member because 30 is not a square.
MAPLE
t1:=[];
for k from 1 to 20000 do
if issqr(k+3*10^length(k)) then t1:=[op(t1), k]; fi;
od;
t1;
PROG
(Magma) [n: n in [1..20000 ] | IsSquare(Seqint(Intseq(n) cat Intseq(3)))]; // Marius A. Burtea, Mar 21 2019
CROSSREFS
Sequence in context: A371019 A370985 A101854 * A325517 A344508 A101877
KEYWORD
nonn,base
AUTHOR
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 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)