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

A030175 When squared gives number composed of digits {1,2,3}.

Original entry on oeis.org

1, 11, 111, 36361, 363639, 461761, 3636361, 34815389, 362397739, 176412364139, 57637950363639, 3497458093147239, 56843832676142723489, 557963558954625926861
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A136808, A136809, ..., A137147: n and n^2 have digits {...}.
Cf. A277959^2 = A277946 and A277960^2 = A277947: squares whose largest digit is 2 resp. 3.

Programs

  • Mathematica
    Do[ If[ Union[ Join[{1, 2, 3}, IntegerDigits[n^2] ] ] == {1, 2, 3}, Print[n] ], {n, 0, 10^9}]
  • PARI
    lista(nn) = for(n=1, nn, if(setminus(vecsort(digits(n^2), , 8), [1, 2, 3])==[], print1(n, ", "))) \\ Iain Fox, Nov 16 2017

Formula

a(n)^2 = A030174(n). - M. F. Hasler, Nov 16 2017

Extensions

More terms from Patrick De Geest, Mar 01 2000
More terms from C. Ronaldo (aga_new_ac(AT)hotmail.com), Jan 14 2005
Offset corrected by Iain Fox, Nov 16 2017

A058474 Squares composed of digits {0,1,9}, not ending with zero.

Original entry on oeis.org

1, 9, 1909190001999001011109190090109911991001, 10199000091990191001091091099001091999900190199000001
Offset: 1

Views

Author

Patrick De Geest, Nov 15 2000

Keywords

Crossrefs

Cf. A058473.

Formula

a(n) = A058473(n)^2. - Elmo R. Oliveira, Jul 17 2025

Extensions

a(4) from Zhao Hui Du, Feb 29 2024

A006716 Squares with digits 1, 4, 9.

Original entry on oeis.org

1, 4, 9, 49, 144, 441, 1444, 11449, 44944, 991494144, 4914991449, 149991994944, 9141411499911441, 199499144494999441, 9914419419914449449, 444411911999914911441, 419994999149149944149149944191494441
Offset: 1

Views

Author

N. J. A. Sloane, revised Jul 10 2015

Keywords

Comments

This is probably a finite sequence, but that is only a conjecture.
Since 1, 4 and 9 are squares, all terms are in A053059. - Rabii Younès, Mar 17 2025

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • I. Vardi, Computational Recreations in Mathematica. Addison-Wesley, Redwood City, CA, 1991, p. 234.

Crossrefs

Subsequence of A019544 and A053059.
Cf. A027675 (square roots), A061269.
For other digit groups {0,1,2} through {7,8,9}, see also: A058411, ..., A058472, A058473, A058474.

Formula

a(n) = A027675(n)^2. - M. F. Hasler, Nov 15 2017

Extensions

a(13) corrected by Neven Juric (neven.juric(AT)apis-it.hr), May 14 2003

A136812 Numbers k such that k and k^2 use only the digits 0, 1, 2, 3 and 6.

Original entry on oeis.org

0, 1, 6, 10, 11, 60, 100, 101, 106, 110, 111, 361, 600, 601, 1000, 1001, 1006, 1010, 1011, 1060, 1100, 1101, 1106, 1110, 1631, 3606, 3610, 6000, 6001, 6010, 6011, 10000, 10001, 10006, 10010, 10011, 10060, 10100, 10101, 10106, 10110, 10111, 10301, 10306, 10600, 11000, 11001, 11006, 11010, 11060, 11100, 11101, 16310, 32111, 36060, 36100, 36361
Offset: 1

Views

Author

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

Keywords

Comments

Generated with DrScheme.

Examples

			1031316261^2 = 1063613230203020121.
		

Crossrefs

Cf. A136808, ..., A137147.
Showing 1-4 of 4 results.