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.

Showing 1-1 of 1 results.

A384636 Triprimes that are the concatenation of three consecutive primes in reverse order.

Original entry on oeis.org

1175, 231917, 434137, 534743, 595347, 10310197, 107103101, 137131127, 149139137, 163157151, 167163157, 179173167, 223211199, 239233229, 251241239, 269263257, 281277271, 293283281, 311307293, 349347337, 383379373, 401397389, 419409401, 421419409, 449443439, 457449443, 487479467, 491487479
Offset: 1

Views

Author

Will Gosnell and Robert Israel, Jun 05 2025

Keywords

Examples

			a(3) = 434137 is a term because it is the concatenation in reverse order of the three consecutive primes 37, 41 and 43, and 434137 = 11 * 61 * 647 is the product of three primes.
		

Crossrefs

Programs

  • Maple
    cat3:= proc(a,b,c)
      (a*10^(1+ilog10(b))+b)*10^(1+ilog10(c))+c
    end proc:
    select(t -> numtheory:-bigomega(t) = 3, [seq(cat3(ithprime(i+2),ithprime(i+1),ithprime(i)),i=1..100)]);
  • Mathematica
    p3[p_]:=FromDigits[Join[IntegerDigits[Prime[p+2]],IntegerDigits[Prime[p+1]],IntegerDigits[Prime[p]]]];Select[Array[p3,100],PrimeOmega[#]==3&] (* James C. McMahon, Jun 09 2025 *)
Showing 1-1 of 1 results.