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
- 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.
a(13) corrected by Neven Juric (neven.juric(AT)apis-it.hr), May 14 2003
A058471
Numbers k such that k^2 contains only digits {7,8,9}.
Original entry on oeis.org
3, 9949370777987917
Offset: 1
A119236
Triangular numbers composed of digits {7,8,9}.
Original entry on oeis.org
78, 8778, 887778, 88877778, 8888777778, 777887999778, 888887777778, 7798988788878, 88888877777778, 8888888777777778, 888888887777777778, 88888888877777777778, 8888888888777777777778, 78879897887889899897778, 888888888887777777777778, 88888888888877777777777778
Offset: 1
A137146
Numbers k such that k and k^2 use only the digits 5, 6, 7 and 8.
Original entry on oeis.org
76, 766, 7666, 76666, 766666, 7666666, 76666666, 766666666, 7666666666, 76666666666, 766666666666, 7666666666666, 76666666666666, 766666666666666, 7666666666666666, 76666666666666666, 766666666666666666, 7666666666666666666, 76666666666666666666, 766666666666666666666
Offset: 1
Jonathan Wellons (wellons(AT)gmail.com), Jan 22 2008
766666666666666^2 = 587777777777776755555555555556.
Cf.
A277959,
A277960,
A277961,
A295005, ...,
A295009 (squares with largest digit = 2, 3, 4, 5, ..., 9).
-
from itertools import product
A137146_list = [n for n in (int(''.join(d)) for l in range(1,6) for d in product('5678',repeat=l)) if set(str(n**2)) <= set('5678')] # Chai Wah Wu, May 25 2021
Showing 1-4 of 4 results.
Comments