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.

Showing 1-2 of 2 results.

A115667 Squares whose digit reversal is a brilliant number (A078972).

Original entry on oeis.org

4, 9, 121, 169, 400, 900, 961, 3481, 3721, 10201, 12100, 12544, 12769, 16384, 16900, 17161, 31684, 40000, 90000, 90601, 94249, 96100, 96721, 150544, 348100, 358801, 372100, 703921, 729316, 765625, 900601, 978121, 1006009, 1020100
Offset: 1

Views

Author

Giovanni Resta, Jan 31 2006

Keywords

Examples

			3481=59^2 is a square and 1843=19*97 is brilliant.
		

Crossrefs

A115668 Brilliant numbers (A078972) whose digit reversal is a square.

Original entry on oeis.org

4, 9, 10, 121, 169, 961, 1273, 1843, 10201, 10609, 12769, 16171, 44521, 48361, 48613, 94249, 96721, 106009, 108853, 121879, 129307, 445051, 526567, 613927, 1026169, 1042441, 1062961, 1216609, 1442401, 1692601
Offset: 1

Views

Author

Giovanni Resta, Jan 31 2006

Keywords

Examples

			1843=19*97 is brilliant and 3481=59^2 is a square.
		

Crossrefs

Programs

  • Mathematica
    brilQ[n_]:=Module[{fin=FactorInteger[n]},Total[Transpose[fin][[2]]]==2&& Length[Union[IntegerLength[Transpose[fin][[1]]]]]==1]
    brilnos=Select[Range[1700000],brilQ];
    Select[brilnos,IntegerQ[Sqrt[FromDigits[Reverse[IntegerDigits[#]]]]]&]  (* Harvey P. Dale, Feb 06 2011 *)
Showing 1-2 of 2 results.