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-3 of 3 results.

A046395 Palindromes that are the product of 5 distinct primes.

Original entry on oeis.org

6006, 8778, 20202, 28182, 41514, 43134, 50505, 68586, 87978, 111111, 141141, 168861, 202202, 204402, 209902, 246642, 249942, 262262, 266662, 303303, 323323, 393393, 399993, 438834, 454454, 505505, 507705, 515515, 516615, 519915, 534435, 535535, 543345
Offset: 1

Views

Author

Patrick De Geest, Jun 15 1998

Keywords

Comments

No exponent of the distinct prime factors can be greater than one, i.e., no prime powers are permitted. - Harvey P. Dale, Apr 09 2021 at the suggestion of Sean A. Irvine
See A373465 for the similar sequence where only distinct prime divisors are counted, but may occur to higher powers. - M. F. Hasler, Jun 06 2024

Examples

			505505 = 5 * 7 * 11 * 13 * 101.
		

Crossrefs

Cf. A002113 (palindromes), A051270 (omega(.) = 5).
Cf. A046331 (palindromes with 5 prime factors counted with multiplicity), A373465 (counting only distinct prime divisors).

Programs

  • Mathematica
    Select[Range[550000],PalindromeQ[#]&&PrimeNu[#]==PrimeOmega[#]==5&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Apr 09 2021 *)

Formula

Intersection of A002113 and A046387.

Extensions

Corrected at the suggestion of Sean A. Irvine by Harvey P. Dale, Apr 09 2021
Name edited to avoid confusion by M. F. Hasler, Jun 06 2024

A373466 Palindromes with exactly 6 distinct prime divisors.

Original entry on oeis.org

222222, 282282, 414414, 444444, 474474, 555555, 606606, 636636, 646646, 666666, 696696, 828828, 888888, 969969, 2040402, 2065602, 2141412, 2206022, 2343432, 2417142, 2444442, 2572752, 2646462, 2673762, 2747472, 2848482, 2875782, 2949492, 2976792
Offset: 1

Views

Author

M. F. Hasler, Jun 06 2024

Keywords

Comments

The term "exactly" clarifies that we don't mean "at least". But the prime divisors may occur to higher powers in the factorization, cf. Examples.
This is different from A046396 which excludes nonsquarefree terms, i.e., terms where one or more of the distinct prime factors occur to a power greater than 1, as it is possible here, cf. Examples.

Examples

			a(1) = 222222 = 2 * 3 * 7 * 11 * 13 * 37 has exactly 6 distinct prime divisors.
a(3) = 414414 = 2 * 3^2 * 7 * 11 * 13 * 23 has 6 distinct prime divisors, even though the factor 3 occurs twice in the factorization.
		

Crossrefs

Cf. A002113 (palindromes), A074969 (omega(.) = 6).
Cf. A046332 (same with bigomega = 6: prime factors counted with multiplicity), A046396 (similar, but squarefree terms only), A373465 (same with omega = 5), A373467 (same with bigomega = 7).

Programs

  • Mathematica
    Select[Range[3000000],PalindromeQ[#]&&Length[FactorInteger[#]]==6&] (* James C. McMahon, Jun 08 2024 *)
  • PARI
    A373466_upto(N, start=1, num_fact=6)={ my(L=List()); while(N >= start = nxt_A002113(start), omega(start)==num_fact && listput(L, start)); L}

Formula

Intersection of A002113 and A074969.

A373467 Palindromes with exactly 7 (distinct) prime divisors.

Original entry on oeis.org

20522502, 21033012, 22444422, 23555532, 24266242, 25777752, 26588562, 35888853, 36399363, 41555514, 41855814, 42066024, 43477434, 43777734, 44888844, 45999954, 47199174, 51066015, 51666615, 52777725, 53588535, 53888835, 55233255, 59911995, 60066006, 60366306, 61777716, 62588526, 62700726
Offset: 1

Views

Author

M. F. Hasler, Jun 06 2024

Keywords

Examples

			Obviously all terms must be palindromic; let us consider the prime factorization:
a(1) = 20522502 = 2 * 3^2 * 7 * 11 * 13 * 17 * 67 has exactly 7 distinct prime divisors, although the factor 3 appears twice in the factorization. (Without the second factor 3 the number would not be palindromic.)
a(2) = 21033012 = 2^2 * 3 * 7 * 11 * 13 * 17 * 103 has exactly 7 distinct prime divisors, although the factor 2 appears twice in the factorization. (Without the second factor 2 the number would not be palindromic.)
a(3) = 22444422 = 2 * 3 * 7 * 11 * 13 * 37 * 101 is the product of 7 distinct primes (cf. A123321), hence the first squarefree term of this sequence.
		

Crossrefs

Cf. A046333 (same with bigomega = 7: counting prime factors with multiplicity), A046397 (same but only squarefree terms), A373465 (same with omega = 5), A046396 (same with omega = 6).
Cf. A002113 (palindromes), A176655 (omega(.) = 7), A123321 (products of 7 distinct primes).

Programs

  • PARI
    A373467_upto(N, start=vecprod(primes(7)), num_fact=7)={ my(L=List()); while(N >= start = nxt_A002113(start), omega(start)==num_fact && listput(L, start)); L}

Formula

Intersection of A002113 and A176655.
Showing 1-3 of 3 results.