OFFSET
1,3
COMMENTS
For prime decomposition of A002182(n) = 2^a * 3^b * 5^c * ..., a(n) = "abc..." converted to a decimal number.
In other words, each "place" read from left to right represents the n-th prime, starting with 2 at left and increasing to the right. A number in the "place" represents the multiplicity of the corresponding prime in A002182(n).
This notation is corrupt when any multiplicity exceeds 9. The smallest instance of this is at n = 221.
Similar to A054841 but multiplicities are in reverse order.
Given that the exponents e(i) (a,b,c... in the above) of the prime factorization are (weakly) decreasing, their concatenation remains unambiguous way beyond n = 221 (first instance where e(1) >= 10) and even beyond n = 8869 (first instance where e(2) >= 10). Only when e2 >= 10 + e(3) for the first time, in principle the first digit of e(2) could be mistaken for the last digit of e(1); yet it is unlikely if not impossible that e(2) < 10 and e(1) > 100. So the first ambiguous decomposition would require concat(e(1),e(2),e(3)) = concat(a',b',c') with a' > b' >= e(3), thus e(2) significantly larger than 10 + e(3) and e(1) much larger than 100. - M. F. Hasler, Jan 03 2020
LINKS
M. F. Hasler, Table of n, a(n) for n = 1..5000 (first 220 terms from Michael De Vlieger), Jan 02 2020
A. Flammenkamp, Highly composite numbers.
A. Flammenkamp, List of the first 1200 highly composite numbers.
D. B. Siano and J. D. Siano, "Pwrs of primes" notation from An Algorithm for Generating Highly Composite Numbers
EXAMPLE
MATHEMATICA
encodePrimeSignature[n_Integer] :=
Catch[FromDigits[Reverse[IntegerDigits[Apply[Plus,
Which[n == 0, Throw["undefined"],
n == 1, 0,
Max[Last /@ FactorInteger @ n ] > 9, Throw["overflow"],
True, Power[10, PrimePi[Abs[#]] - 1]] & /@
Flatten[ConstantArray @@@ FactorInteger[n]] ]]]]];
lst = FoldList[Max, 1, Table[DivisorSigma[0, n], {n, 2, 100000000}]];
Map[encodePrimeSignature, Flatten[Position[lst, #, 1, 1] & /@ Union[lst]]]
PROG
(PARI) apply( A245500(n)=fromdigits(factor(A002182(n))[, 2]~), [1..99]) \\ For n >= 8869, fromdigits must be replaced by (s->if(s, eval(concat([Str(e)|e<-s])))). - M. F. Hasler, Jan 03 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Michael De Vlieger, Jul 24 2014
EXTENSIONS
Offset corrected to 1 by M. F. Hasler, Jan 03 2020
STATUS
approved