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.

A251363 Numbers n such that n is the concatenation of distinct prime factors of phi(n), in decreasing order.

Original entry on oeis.org

237532, 832332, 82953292, 423238803752
Offset: 1

Views

Author

Jahangeer Kholdi, Dec 03 2014

Keywords

Comments

Numbers n such that n = A085307(A000010(n)). - Michel Marcus, Dec 06 2014

Examples

			237532 is in the sequence since phi(237532)=23*7*5*3^2*2^4,
832332 is in the sequence since phi(832332)=83*23*3^2*2^4, and
82953292 is in the sequence since phi(82953292)=829*53*29*2^5.
		

Crossrefs

Programs

  • Mathematica
    a251363[n_Integer] :=
    Rest@ Select[Range[n], # == FromDigits[Flatten@ IntegerDigits[
    Sort[First@ Transpose@ FactorInteger[EulerPhi[#]], Greater]]] &]; a251363[10^6] (* Michael De Vlieger, Dec 03 2014 *)

Extensions

a(4) from Max Alekseyev, Feb 10 2025