cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A279429 Numbers k such that k^2 has an odd number of digits and the middle digit is 9.

Original entry on oeis.org

3, 14, 114, 118, 130, 134, 148, 158, 161, 170, 173, 176, 187, 212, 219, 228, 230, 270, 272, 281, 288, 313, 1034, 1039, 1044, 1058, 1063, 1072, 1077, 1086, 1095, 1109, 1118, 1131, 1140, 1153, 1166, 1183, 1204, 1208, 1292, 1296, 1315, 1319, 1334, 1345, 1349
Offset: 1

Views

Author

Lars Blomberg, Dec 22 2016

Keywords

Examples

			3^2 = (9), 170^2 = 28(9)00, 1086^2 = 117(9)396.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[1349], OddQ[len=Length[IntegerDigits[#^2]]]&&Part[IntegerDigits[#^2], (len+1)/2]==9 &] (* Stefano Spezia, Oct 03 2023 *)