A384791 Numbers with a record number of ways in which they can be expressed as b^3 * c^4 * d^5, with b, c and d >= 1.
1, 256, 4096, 32768, 262144, 1048576, 8388608, 16777216, 134217728, 268435456, 1073741824, 4294967296, 8589934592, 34359738368, 68719476736, 110075314176, 549755813888, 557256278016, 1761205026816, 4458050224128, 7044820107264, 8916100448256, 56358560858112, 71328803586048
Offset: 1
Keywords
Examples
256 in the sequence as 256 = 1^3 * 4^4 * 1^5 = 2^3 * 1^4 * 2^5 so there are two ways to write 256 as b^3 * c^4 * d^5, with b, c and d >= 1 and no smaller positive integer can be written in at least two ways like that. - _David A. Corneth_, Jun 30 2025
Links
- David A. Corneth, Table of n, a(n) for n = 1..810 (first 216 terms from Amiram Eldar, terms <= 10^120)
- David A. Corneth, Table of n, a(n), exponents of prime factors and record values for n = 1..810
- Index entries for sequences related to powerful numbers.
Crossrefs
Programs
-
Mathematica
f[p_, e_] := Floor[(1+(-1)^e)*(-1)^Floor[e/2]/8 + (e^2 + 12*e + 90)/120]; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; With[{lps = Cases[Import["https://oeis.org/A025487/b025487.txt", "Table"], {, }][[;; , 2]]}, sm = -1; seq = {}; Do[s1 = s[lps[[i]]]; If[s1 > sm, sm = s1; AppendTo[seq, lps[[i]]]], {i, 1, Length[lps]}]; seq]
Comments