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.

A363789 a(n) is the smallest primitive binary Niven number (A363787) whose binary representation is ending with n zeros.

Original entry on oeis.org

1, 6, 60, 2040, 1048560, 137438953440, 1180591620717411303360, 43556142965880123323311949751266331066240, 29642774844752946028434172162224104410437116074403984394101141506025761187823360
Offset: 0

Views

Author

Amiram Eldar, Jun 22 2023

Keywords

Comments

The least term k of A363787 such that A007814(k) = n.
Also, the least binary Niven number (A049445) with a binary weight (A000120) that equals 2^n.
The next term, a(9) = 6.864... * 10^156, is too long to include in the Data section.

Crossrefs

Subsequence of A049445, A143115 and A363787.
Cf. A000120, A007814, A066524, A358256 (decimal analog).

Programs

  • Mathematica
    a[n_] := (2^(2^n)-1) * 2^n; Array[a, 9, 0]
  • PARI
    a(n) = (2^(2^n)-1) * 2^n;

Formula

a(n) = (2^(2^n)-1) * 2^n = A066524(2^n).
a(n) = A143115(2^n).