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.

A062917 Nonpalindromic numbers k such that k is not divisible by 10 and k*R(k) is a square, where R(k) is the reversal of k (A004086).

Original entry on oeis.org

144, 169, 288, 441, 528, 768, 825, 867, 882, 961, 1089, 1584, 2178, 4851, 8712, 9801, 10404, 10609, 10989, 12544, 12769, 13104, 14544, 14884, 15984, 20808, 21978, 26208, 27648, 27848, 36828, 40131, 40401, 44521, 44541, 48139, 48841, 48951
Offset: 1

Views

Author

Amarnath Murthy, Jul 02 2001

Keywords

Comments

The sequence has infinitely many terms, some of which can be derived from 1089 and 2178.

Examples

			2178 is a term as 2178*8712 = 4356^2.
10891089 is a term as 10891089*98019801 = 32673267^2.
		

Crossrefs

Cf. A004086.
Subsequence of A029742.

Programs

  • Mathematica
    okQ[n_]:=Module[{idn=IntegerDigits[n],ridn},ridn=Reverse[idn];idn!= ridn && !Divisible[n,10]&&IntegerQ[Sqrt[n FromDigits[ridn]]]]; Select[Range[ 50000], okQ] (* Harvey P. Dale, Dec 08 2012 *)

Extensions

More terms from Reiner Martin, Jul 10 2001