cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A102555 Smallest number covering bitwise exactly n prime factors.

Original entry on oeis.org

1, 2, 15, 255, 3135, 41055, 440895, 10705695, 242777535, 4360010655
Offset: 0

Views

Author

Reinhard Zumkeller, Jan 14 2005

Keywords

Comments

A102550(a(n))=n and A102550(m) < n for m < a(n).
a(10) <= 287901348735. - Amiram Eldar, Feb 04 2019

Crossrefs

Programs

  • 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 *)

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