login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A046396
Palindromes which are the product of 6 distinct primes.
4
222222, 282282, 474474, 555555, 606606, 646646, 969969, 2040402, 2065602, 2206022, 2417142, 2646462, 2673762, 2875782, 3262623, 3309033, 4179714, 4192914, 4356534, 4585854, 4912194, 5021205, 5169615, 5174715, 5578755
OFFSET
1,1
COMMENTS
The original definition "Palindromes with exactly 6 distinct prime factors" was misleading. For example, the number 414414 = 2 * 3^2 * 7 * 11 * 13 * 23 has exactly 6 distinct prime factors, although the factor 3 occurs twice. But the listed terms show that it is not in this sequence. See sequence A373466 for the variant corresponding to that definition. - M. F. Hasler, Jun 06 2024
FORMULA
Intersection of A002113 and A067885. - M. F. Hasler, Jun 06 2024
MATHEMATICA
Select[Range[6*10^6], #==IntegerReverse[#]&&PrimeNu[#]==PrimeOmega[#]==6&] (* The program uses the IntegerReverse function from Mathematica version 10 *) (* Harvey P. Dale, Mar 17 2016 *)
PROG
(PARI) A046332_upto(N, start=1, num_fact=6)={ my(L=List()); while(N >= start = nxt_A002113(start), omega(start)==num_fact && issquarefree(start) && listput(L, start)); L} \\ M. F. Hasler, Jun 06 2024
CROSSREFS
Cf. A046332 (similar, but for 6 prime factors counted with multiplicity).
Cf. A002113 (palindromes), A067885 (products of 6 distinct primes).
Cf. A074969 (numbers having 6 distinct prime divisors).
Sequence in context: A254516 A254816 A373466 * A083640 A253990 A253997
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, Jun 15 1998
EXTENSIONS
Name edited
STATUS
approved