A363789 a(n) is the smallest primitive binary Niven number (A363787) whose binary representation is ending with n zeros.
1, 6, 60, 2040, 1048560, 137438953440, 1180591620717411303360, 43556142965880123323311949751266331066240, 29642774844752946028434172162224104410437116074403984394101141506025761187823360
Offset: 0
Links
- Amiram Eldar, Table of n, a(n) for n = 0..11
Crossrefs
Programs
-
Mathematica
a[n_] := (2^(2^n)-1) * 2^n; Array[a, 9, 0]
-
PARI
a(n) = (2^(2^n)-1) * 2^n;
Comments