OFFSET
1,2
COMMENTS
An infinitary (or Fermi-Dirac) analog of the Ramanujan sequence A067128.
Between the smallest number b_k which is product of k distinct terms of A050376 and b_(k+1) all terms are products of k distinct terms of A050376.
Thus every subsequence of terms, having in Fermi-Dirac factorization a fixed number of distinct factors from A050376, is finite.
These subsequences have cardinalities: 1, 4, 10, 21, 47, ...
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
MATHEMATICA
a = {}; b = {0}; Do[If[# >= Max@b, AppendTo[a, k] && AppendTo[b, #]] &@ If[k == 1, 1, Times @@ Flatten@ Map[2^First@ DigitCount[#, 2] &, FactorInteger[k][[All, 2]]]], {k, 10^3}]; a (* Michael De Vlieger, May 13 2016, after Jean-François Alcover at A037445 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, May 13 2016
STATUS
approved