cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A329026 Numbers k such that k = Product(p_j^e_j) = concatenation(pi(p_j)), where pi = A000720.

Original entry on oeis.org

12, 14, 2127, 1232495490
Offset: 1

Views

Author

Ilya Gutkovskiy, Nov 02 2019

Keywords

Comments

Numbers k such that k equals concatenation of indices of distinct prime factors of k, in increasing order.
Fixed points of A329025.
No other terms below 10^17. - Max Alekseyev, Feb 21 2025

Examples

			2127 is a term because 2127 = 3 * 709 = prime(2) * prime(127) = concat(2, 127).
		

Crossrefs

Programs

  • Mathematica
    a[n_] := FromDigits[Flatten@IntegerDigits@(PrimePi[#[[1]]] & /@ FactorInteger[n])]; Select[Range[2200], a[#] == # &]

Extensions

a(4) from Giovanni Resta, Nov 04 2019