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”).

A102555
Smallest number covering bitwise exactly n prime factors.
1
1, 2, 15, 255, 3135, 41055, 440895, 10705695, 242777535, 4360010655
OFFSET
0,2
COMMENTS
A102550(a(n))=n and A102550(m) < n for m < a(n).
a(10) <= 287901348735. - Amiram Eldar, Feb 04 2019
MATHEMATICA
npfQ[k_, n_] := Module[{f=FactorInteger[k][[;; , 1]]}, Length[f] == n && Count[ BitAnd[k, f] - f, 0] == n]; s={1}; Do[k=2; While[!npfQ[k, n], k++]; AppendTo[s, k], {n, 1, 7}]; s (* Amiram Eldar, Feb 04 2019 *)
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Reinhard Zumkeller, Jan 14 2005
EXTENSIONS
Two more terms and "base" keyword from Max Alekseyev, Sep 13 2009
Offset 0 and a(7)-a(9) from Amiram Eldar, Feb 04 2019
STATUS
approved