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.

A199630 Numbers having each digit once and whose square has each digit twice.

Original entry on oeis.org

3175462089, 3175804269, 3204957816, 3206549178, 3210754689, 3254196708, 3260974851, 3275409816, 3284591706, 3290581476, 3406829517, 3410856297, 3459186720, 3469857012, 3475806912, 3501249678, 3512067849, 3519876240, 3549716208, 3564980172, 3587902614
Offset: 1

Views

Author

T. D. Noe, Nov 09 2011

Keywords

Examples

			3175462089^2 = 10083559478676243921.
		

Crossrefs

Cf. A050278 (pandigital numbers), A199631, A365144, A199632, A199633. Subsequence of A114258.

Programs

  • Mathematica
    t = Select[Permutations[Range[0, 9]], #[[1]] > 0 &]; t2 = Select[t, Union[DigitCount[FromDigits[#]^2]] == {2} &]; FromDigits /@ t2