OFFSET
1,1
COMMENTS
Generated with DrScheme.
Contains 2*10^m + (10^m-1)/3 + 2 for m >= 2. Are these all the terms > 23333524235? There are no others with up to 25 digits. - Robert Israel, Jul 02 2018
There are no others than those of that form with up to 35 digits. - Michael S. Branicky, May 25 2021
LINKS
Jonathan Wellons, Tables of Shared Digits [archived].
EXAMPLE
23333524235^2 = 544453353225332335225.
PROG
(PARI) isokd(x) = (x < 2) || (x > 5);
isok(n) = !#select(x->isokd(x), digits(n)) && !#select(x->isokd(x), digits(n^2)); \\ Michel Marcus, Jul 02 2018
(Python) # uses auptod in A137110
print(auptod(16, only="2345")) # Michael S. Branicky, May 25 2021
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Jonathan Wellons (wellons(AT)gmail.com), Jan 22 2008
STATUS
approved