OFFSET
1,2
COMMENTS
Almost all numbers are included -- of the first 1000 numbers, only 14 -- i.e., 5, 11, 13, 15, 17, 31, 37, 55, 81, 164, 395, 513, 517, and 619 -- do not appear. In all likelihood, the density of such exceptions gets even smaller as the numbers get larger. - Harvey P. Dale, May 16 2025
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
6!=1*2*3*4*5*6=720 -> '1011010000' where '110'=6 is contained:
'..110.....', therefore 6 is a term.
MATHEMATICA
Select[Range[80], SequenceCount[IntegerDigits[#!, 2], IntegerDigits[#, 2]]>0&] (* Harvey P. Dale, May 16 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Apr 10 2004
STATUS
approved
