login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A137003
Numbers k such that k and k^2 use only the digits 1, 2, 5 and 6.
1
1, 5, 11, 15, 16, 25, 125, 511, 515, 516, 1125, 2261, 5125, 12511, 12515, 25525, 51211, 125125, 5162515, 51626211, 125162515, 5162525125
OFFSET
1,2
COMMENTS
Generated with DrScheme.
Subsequence of A137004 and A137007. - M. F. Hasler, Jan 24 2008
LINKS
EXAMPLE
5162525125^2 = 26651665666256265625.
MATHEMATICA
okQ[n_]:=With[{idn=IntegerDigits[n^2]}, And@@Table[MemberQ[{1, 2, 5, 6}, idn[[i]]], {i, Length[idn]}]]; Flatten[Table[Select[ FromDigits/@ Tuples[{1, 2, 5, 6}, k], okQ], {k, 10}]] (* Harvey P. Dale, Jul 07 2012 *)
CROSSREFS
Sequence in context: A137004 A137005 A137006 * A314003 A314004 A296031
KEYWORD
base,nonn,more
AUTHOR
Jonathan Wellons (wellons(AT)gmail.com), Jan 22 2008
STATUS
approved