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”).

A034377
Squares that remain a square if a suitably chosen digit is dropped.
3
1, 4, 9, 16, 49, 64, 81, 100, 169, 196, 225, 256, 361, 400, 625, 841, 900, 1225, 1296, 1369, 1444, 1521, 1600, 1936, 2025, 2809, 3025, 3249, 4225, 4900, 5329, 5476, 5625, 5776, 5929, 6400, 7225, 8100, 9025, 10000, 12996, 13225, 13689, 15625, 16900
OFFSET
1,2
LINKS
EXAMPLE
1296 = 36^2 belongs to the sequence as removing 2 yields 196 = 14^2. 1444 = 38^2 belongs to the sequence as removing 4 yields 144 = 12^2.
MATHEMATICA
srsQ[n_]:=AnyTrue[FromDigits/@Table[Drop[IntegerDigits[n], {i}], {i, IntegerLength[ n]}], IntegerQ[Sqrt[#]]&]; Select[Range[200]^2, srsQ] (* The program uses the AnyTrue function from Mathematica version 10 *) (* Harvey P. Dale, Jul 16 2016 *)
CROSSREFS
Sequence in context: A219355 A291216 A074101 * A034378 A062387 A029784
KEYWORD
nonn,base
STATUS
approved