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.

A387093 Composite numbers that contain only prime digits and whose prime factors contain only prime digits.

Original entry on oeis.org

25, 27, 32, 35, 72, 75, 222, 225, 252, 322, 333, 375, 525, 552, 555, 575, 735, 777, 2352, 2553, 2555, 2775, 3357, 3375, 3552, 3577, 5222, 5352, 5575, 7252, 7322, 23253, 23373, 23532, 23535, 23552, 25275, 25725, 25737, 27232, 27252, 27375, 32352, 32375
Offset: 1

Views

Author

Scott R. Shannon and Ursula Ponting, Aug 16 2025

Keywords

Examples

			25725 is a term as 25725 = 3 * 5^2 * 7^3, and both the number and its prime factors only contain prime digits.
		

Crossrefs

Programs

  • Mathematica
    Select[Select[Range[33000], CompositeQ], And[AllTrue[Union@ IntegerDigits[#], PrimeQ], AllTrue[Union@ Flatten@ Map[IntegerDigits, FactorInteger[#][[All, 1]] ], PrimeQ]] &] (* Michael De Vlieger, Aug 16 2025 *)