OFFSET
1,1
COMMENTS
a(17) = 19933 and a(20) = 22819 are such that a(n)^4 == 111121 (mod 10^6), therefore any number ending in (0|5)19933 or in (0|5)22819, where (a|b) means a or b, is in the sequence. Of course, for each term a(n), all numbers a(n)*10^k, k >= 0, are also in the sequence. - M. F. Hasler, Jul 16 2024
Conjecture: a(n) ~ n. - Charles R Greathouse IV, Dec 04 2024
REFERENCES
C. A. Pickover, "Keys to Infinity", New York: Wiley, p. 7, 1995.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Giovanni Resta, super-d numbers, personal web site "Numbers Aplenty", 2013
Eric Weisstein's World of Mathematics, Super-d Number.
MATHEMATICA
Select[Range[33000], MemberQ[Partition[IntegerDigits[4*#^4], 4, 1], {4, 4, 4, 4}]&] (* Harvey P. Dale, Mar 22 2012 *)
PROG
(Python) is_A032744=lambda n: '4444' in str(4*n**4) # M. F. Hasler, Jul 16 2024
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, May 15 1998
EXTENSIONS
Offset changed to 1 by M. F. Hasler, Jul 16 2024
STATUS
approved