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

A376739
Main diagonal of A376738: a(n) is the n-th number which is the product of n (possibly non-distinct) primes having the same number of decimal digits.
2
2, 6, 18, 40, 108, 224, 480, 1296, 2688, 5760, 12800, 31104, 64512, 138240, 286720, 614400, 1492992, 3096576, 6422528
OFFSET
1,1
COMMENTS
See A376738 for more information.
First differs from A101695 at n = 10.
FORMULA
a(n) = A376738(n,n).
MATHEMATICA
A376739[n_] := Module[{m = 2^n - 1}, Do[While[Total[(f = FactorInteger[++m])[[All, 2]]] != n || Length[Union[IntegerLength[f[[All, 1]]]]] > 1], n]; m];
Array[A376739, 15]
CROSSREFS
Sequence in context: A338765 A339149 A101695 * A364672 A014741 A016059
KEYWORD
nonn,base,more
AUTHOR
Paolo Xausa, Oct 03 2024
STATUS
approved