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

A329026
Numbers k such that k = Product (p_j^e_j) = concatenation (pi(p_j)), where pi = A000720.
1
12, 14, 2127, 1232495490
OFFSET
1,1
COMMENTS
Numbers k such that k equals concatenation of indices of distinct prime factors of k, in increasing order.
Fixed points of A329025.
a(5) > 2.4*10^11, if it exists. - Giovanni Resta, Nov 05 2019
EXAMPLE
2127 is a term because 2127 = 3 * 709 = prime(2) * prime(127) = concat(2, 127).
MATHEMATICA
a[n_] := FromDigits[Flatten@IntegerDigits@(PrimePi[#[[1]]] & /@ FactorInteger[n])]; Select[Range[2200], a[#] == # &]
CROSSREFS
Sequence in context: A318298 A139310 A221819 * A307535 A180575 A115402
KEYWORD
nonn,base,more
AUTHOR
Ilya Gutkovskiy, Nov 02 2019
EXTENSIONS
a(4) from Giovanni Resta, Nov 04 2019
STATUS
approved