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.

A109024 Numbers that have exactly four prime factors counted with multiplicity (A014613) whose digit reversal is different and also has 4 prime factors (with multiplicity).

Original entry on oeis.org

126, 225, 294, 315, 459, 488, 492, 513, 522, 558, 621, 650, 738, 837, 855, 884, 954, 1035, 1062, 1098, 1107, 1197, 1206, 1236, 1287, 1305, 1422, 1518, 1617, 1665, 1917, 1926, 1956, 1962, 1989, 2004, 2034, 2046, 2068, 2104, 2148, 2170, 2180, 2223, 2226
Offset: 1

Views

Author

Jonathan Vos Post, Jun 16 2005

Keywords

Comments

This sequence is the k = 4 instance of the series which begins with k = 1, k = 2, k = 3 (A109023).

Examples

			a(1) = 126 is in this sequence because 126 = 2 * 3^2 * 7 is a 4-almost prime and reverse(126) = 621 = 3^3 * 23 is also a 4-almost prime.
a(2) = 225 is in this sequence because 225 = 3^2 * 5^2 is a 4-almost prime and reverse(225) = 522 = 2 * 3^2 * 29 is also a 4-almost prime. (That 225 and 522 are concatenated from entirely prime digits is a coincidence, as with 2223).
		

Crossrefs

Programs

  • Mathematica
    Select[Range[2226],PrimeOmega[#]==4 && PrimeOmega[FromDigits[Reverse[IntegerDigits[#]]]]==4 &&!PalindromeQ[#]&] (* James C. McMahon, Mar 07 2024 *)
  • PARI
    is(n) = {
    	my(r = fromdigits(Vecrev(digits(n))));
    	n!=r && bigomega(n) == 4 && bigomega(r) == 4
    } \\ David A. Corneth, Mar 07 2024