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.

A136986 Numbers k such that k and k^2 use only the digits 1, 2 and 4.

Original entry on oeis.org

1, 2, 11, 12, 21
Offset: 1

Views

Author

Jonathan Wellons (wellons(AT)gmail.com), Jan 22 2008

Keywords

Comments

Sequence terminates.
Generated with DrScheme.

Examples

			21^2 = 441.
		

Crossrefs

Cf. A137002.

Programs

  • Mathematica
    Table[Select[(FromDigits/@Tuples[{1,2,4},d]),SubsetQ[{1,2,4},IntegerDigits[ #^2]]&],{d,2}]//Flatten (* Harvey P. Dale, Jan 10 2022 *)