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.

A317579 Integers n such that the digit set of n^2 is {0,1,4,9}.

Original entry on oeis.org

138, 648, 701, 951, 1007, 1070, 1380, 1393, 3153, 3451, 3743, 3747, 4462, 6357, 6480, 7001, 7010, 7071, 9510, 9701, 10007, 10070, 10097, 10243, 10538, 10700, 13800, 13930, 20247, 20347, 22138, 31530, 34510, 37430, 37470, 37538, 38071, 38602, 44620, 63357, 63403, 63570, 64800
Offset: 1

Views

Author

Robert G. Wilson v, Jul 31 2018

Keywords

Comments

n cannot end in the decimal digits 4, 5 or 6; but it most often ends in 0 since if n is present so is 10*n.
n cannot start with the decimal digits 5 or 8. It usually starts with either 3 or 1.
n must lie between 1*10^k & sqrt(2)*10^k, 2*10^k & sqrt(5)*10^k, 3 & sqrt(12)*10^k, sqrt(14)*10^k & sqrt(15)*10^k, sqrt(19)*10^k & sqrt(20)*10^k, sqrt(40)*10^k & sqrt(45)*10^k, sqrt(49)*10^k & sqrt(50)*10^k, sqrt(90)*10^k & sqrt(92)*10^k, sqrt(94)*10^k & sqrt(95)*10^k, sqrt(99)*10^k & sqrt(100)*10^k; for k>0.

Examples

			138 = 19044 which has only the decimal digits 0, 1, 4 & 9. Therefore it is in the sequence.
		

Crossrefs

Programs

  • Mathematica
    fQ[n_] := Union[IntegerDigits[n^2]] == {0, 1, 4, 9}; Select[ Range@ 65000, fQ]
  • PARI
    isok(n) = Set(digits(n^2)) == [0, 1, 4, 9]; \\ Michel Marcus, Aug 01 2018