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-1 of 1 results.

A282384 Numbers n such that the decimal expansion of n^2 contains n+1.

Original entry on oeis.org

11, 76, 101, 759, 1001, 2434, 3826, 5618, 10001, 36559, 47576, 62511, 67947, 68443, 82621, 100001, 105125, 312511, 684429, 880618, 1000001, 4687499, 5123596, 7130618, 8703826, 10000001, 26452434, 33620473, 38837976, 39904875, 43605459, 54687499, 86421306, 100000001
Offset: 1

Views

Author

Chai Wah Wu, Feb 13 2017

Keywords

Comments

a(n)^2 is a subsequence of A186774, in particular A186774(a(n)) = a(n)^2. For k > 0, 10^k+1 is a term.

Examples

			76 is a term since 76^2 = 5776 contains 77 = 76+1.
		

Crossrefs

Cf. A186774.

Programs

  • Python
    A282384_list = [i for i in range(1,10**6) if str(i+1) in str(i**2)]
Showing 1-1 of 1 results.