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.

A109026 Numbers that have exactly six prime factors counted with multiplicity (A046306) whose digit reversal is different and also has 6 prime factors (with multiplicity).

Original entry on oeis.org

2576, 2970, 4284, 4356, 4410, 4600, 4698, 4824, 5265, 5625, 6534, 6752, 6900, 8250, 8964, 10710, 10890, 13140, 13986, 16236, 16335, 17577, 18504, 19494, 20286, 20574, 21114, 21150, 21160, 21336, 21492, 21576, 21609, 21900, 21996, 22392, 22770
Offset: 1

Views

Author

Jonathan Vos Post, Jun 16 2005

Keywords

Comments

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

Examples

			a(1) = 2576 is in this sequence because 2576 = 2^4 * 7 * 23 has exactly 6 prime factors counted with multiplicity reverse(2576) = 6752 = 2^5 * 211 is also has exactly 6 prime factors counted with multiplicity.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[23000],!PalindromeQ[#]&&Total[FactorInteger[#][[All,2]]] == Total[FactorInteger[IntegerReverse[#]][[All,2]]]==6&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Oct 10 2017 *)
    Select[Range[25000],PrimeOmega[#]==PrimeOmega[IntegerReverse[#]]==6&&!PalindromeQ[#]&] (* Harvey P. Dale, Mar 11 2025 *)
  • PARI
    is(n) = {
    	my(r = fromdigits(Vecrev(digits(n))));
    	n!=r && bigomega(n) == 6 && bigomega(r) == 6
    } \\ David A. Corneth, Mar 07 2024