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.

A357896 Additive triprimes.

Original entry on oeis.org

8, 44, 66, 75, 99, 116, 125, 138, 147, 165, 170, 174, 242, 246, 255, 273, 279, 282, 318, 332, 345, 354, 363, 369, 387, 404, 426, 435, 477, 507, 530, 534, 549, 561, 578, 596, 602, 606, 615, 639, 642, 651, 657, 668, 705, 710, 741, 747, 822, 873, 903, 909, 927, 938, 956, 963, 981, 1025, 1034, 1038, 1052, 1065, 1070, 1074
Offset: 1

Views

Author

Zak Seidov, Oct 18 2022

Keywords

Comments

Triprimes for which the sum of the digits is also a triprime.

Examples

			75 = 3*5*5 and 5 + 7 = 12 = 2*2*3 (both are product of 3 primes).
		

Crossrefs

Programs

  • Mathematica
    s = Select[Range[8, 1500], 3 == PrimeOmega[#] &]; s = Select[s, 3 == PrimeOmega[Total[IntegerDigits[#]]] &]
  • PARI
    istp(k) = bigomega(k)==3; \\ A014612
    isok(k) = istp(k) && istp(sumdigits(k)); \\ Michel Marcus, Nov 02 2022