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

A386797 Numbers that have exactly two exponents in their prime factorization that are equal to 2.

Original entry on oeis.org

36, 100, 180, 196, 225, 252, 300, 396, 441, 450, 468, 484, 588, 612, 676, 684, 700, 828, 882, 980, 1044, 1089, 1100, 1116, 1156, 1225, 1260, 1300, 1332, 1444, 1452, 1476, 1521, 1548, 1575, 1692, 1700, 1800, 1900, 1908, 1980, 2028, 2100, 2116, 2124, 2156, 2178, 2196
Offset: 1

Views

Author

Amiram Eldar, Aug 02 2025

Keywords

Comments

First differs from its subsequence A375144 at n = 38: a(38) = 1800 = 2^3 * 3^2 * 5^2 is not a term of A375144.
Numbers k such that A369427(k) = 2.
The asymptotic density of this sequence is Product_{p primes} (1 - 1/p^2 + 1/p^3) * ((Sum_{p prime} (p-1)/(p^3 - p + 1))^2 - Sum_{p prime} ((p-1)^2/(p^3 - p + 1)^2)) / 2 = 0.023701044250873975412... (the product is A330596) (Elma and Martin, 2024).

Crossrefs

A375144 is a subsequence.
Numbers that have exactly two exponents in their prime factorization that are equal to k: this sequence (k=2), A386801 (k=3), A386805 (k=4), A386809 (k=5).
Numbers that have exactly m exponents in their prime factorization that are equal to 2: A337050 (m=0), A386796 (m=1), this sequence (m=2), A386798 (m=3).

Programs

  • Mathematica
    f[p_, e_] := If[e == 2, 1, 0]; s[1] = 0; s[n_] := Plus @@ f @@@ FactorInteger[n]; Select[Range[2200], s[#] == 2 &]
  • PARI
    isok(k) = vecsum(apply(x -> if(x == 2, 1, 0), factor(k)[, 2])) == 2;

A386801 Numbers that have exactly two exponents in their prime factorization that are equal to 3.

Original entry on oeis.org

216, 1000, 1080, 1512, 2376, 2744, 2808, 3000, 3375, 3672, 4104, 4968, 5400, 6264, 6696, 6750, 7000, 7560, 7992, 8232, 8856, 9000, 9261, 9288, 10152, 10584, 10648, 11000, 11448, 11880, 12744, 13000, 13176, 13500, 13720, 14040, 14472, 15336, 15768, 16632, 17000
Offset: 1

Views

Author

Amiram Eldar, Aug 03 2025

Keywords

Comments

Subsequence of A109399 and first differs from it at n = 64: A109399(64) = 27000 = 2^3 * 3^3 * 5^3 is not a term of this sequence.
Numbers k such that A295883(k) = 2.
The asymptotic density of this sequence is Product_{p primes} (1 - 1/p^3 + 1/p^4) * ((Sum_{p prime} (p-1)/(p^4 - p + 1))^2 - Sum_{p prime} ((p-1)^2/(p^4 - p + 1)^2)) / 2 = 0.0024403883082851652103... (Elma and Martin, 2024).

Crossrefs

Subsequence of A109399.
Cf. A295883.
Numbers that have exactly two exponents in their prime factorization that are equal to k: A386797 (k=2), this sequence (k=3), A386805 (k=4), A386809 (k=5).
Numbers that have exactly m exponents in their prime factorization that are equal to 3: A386799 (m=0), A386800 (m=1), this sequence (m=2), A386802 (m=3).

Programs

  • Mathematica
    f[p_, e_] := If[e == 3, 1, 0]; s[1] = 0; s[n_] := Plus @@ f @@@ FactorInteger[n]; Select[Range[17000], s[#] == 2 &]
  • PARI
    isok(k) = vecsum(apply(x -> if(x == 3, 1, 0), factor(k)[, 2])) == 2;

A386805 Numbers that have exactly two exponents in their prime factorization that are equal to 4.

Original entry on oeis.org

1296, 6480, 9072, 10000, 14256, 16848, 22032, 24624, 29808, 30000, 32400, 37584, 38416, 40176, 45360, 47952, 50625, 53136, 55728, 60912, 63504, 68688, 70000, 71280, 76464, 79056, 84240, 86832, 90000, 92016, 94608, 99792, 101250, 102384, 107568, 110000, 110160, 115248
Offset: 1

Views

Author

Amiram Eldar, Aug 03 2025

Keywords

Comments

The asymptotic density of this sequence is Product_{p primes} (1 - 1/p^4 + 1/p^5) * ((Sum_{p prime} (p-1)/(p^5 - p + 1))^2 - Sum_{p prime} ((p-1)^2/(p^5 - p + 1)^2)) / 2 = 0.00032582100547959312658... (Elma and Martin, 2024).

Crossrefs

Numbers that have exactly two exponents in their prime factorization that are equal to k: A386797 (k=2), A386801 (k=3), this sequence (k=4), A386809 (k=5).
Numbers that have exactly m exponents in their prime factorization that are equal to 4: A386803 (m=0), A386804 (m=1), this sequence (m=2), A386806 (m=3).

Programs

  • Mathematica
    f[p_, e_] := If[e == 4, 1, 0]; s[1] = 0; s[n_] := Plus @@ f @@@ FactorInteger[n]; Select[Range[120000], s[#] == 2 &]
  • PARI
    isok(k) = vecsum(apply(x -> if(x == 4, 1, 0), factor(k)[, 2])) == 2;

A386807 Numbers without an exponent 5 in their prime factorization.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70
Offset: 1

Views

Author

Amiram Eldar, Aug 03 2025

Keywords

Comments

First differs from its subsequence A166718 at n = 47: a(47) = 48 = 2^4 * 3 is not a term of A166718.
Differs from A373868 by having the terms 1, 1024, 32768, 59049, ..., and not having the terms 96, 160, 224, ... .
These numbers were named semi-5-free integers by Suryanarayana (1971).
The asymptotic density of this sequence is Product_{p prime} (1 - 1/p^5 + 1/p^6) = 0.98136375107187963656... (Suryanarayana, 1971).

Crossrefs

A166718 is a subsequence.
Cf. A373868.
Numbers without an exponent k in their prime factorization: A001694 (k=1), A337050 (k=2), A386799 (k=3), A386803 (k=4), this sequence (k=5).
Numbers that have exactly m exponents in their prime factorization that are equal to 5: this sequence (m=0), A386808 (m=1), A386809 (m=2), A386810 (m=3).

Programs

  • Mathematica
    Select[Range[100], !MemberQ[FactorInteger[#][[;; , 2]], 5] &]
  • PARI
    isok(k) = vecsum(apply(x -> if(x == 5, 1, 0), factor(k)[, 2])) == 0;

A386808 Numbers that have exactly one exponent in their prime factorization that is equal to 5.

Original entry on oeis.org

32, 96, 160, 224, 243, 288, 352, 416, 480, 486, 544, 608, 672, 736, 800, 864, 928, 972, 992, 1056, 1120, 1184, 1215, 1248, 1312, 1376, 1440, 1504, 1568, 1632, 1696, 1701, 1760, 1824, 1888, 1944, 1952, 2016, 2080, 2144, 2208, 2272, 2336, 2400, 2430, 2464, 2528
Offset: 1

Views

Author

Amiram Eldar, Aug 03 2025

Keywords

Comments

Subsequence of A362841 and first differs from it at n = 145: A362841(145) = 7776 = 2^5 * 3 ^ 5 is not a term of this sequence.
The asymptotic density of this sequence is Product_{p prime} (1 - 1/p^5 + 1/p^6) * Sum_{p prime} (p-1)/(p^6 - p + 1) = 0.0185875810803524107305... (Elma and Martin, 2024).

Crossrefs

Cf. A362841.
Numbers that have exactly one exponent in their prime factorization that is equal to k: A119251 (k=1), A386796 (k=2), A386800 (k=3), A386804 (k=4), this sequence (k=5).
Numbers that have exactly m exponents in their prime factorization that are equal to 5: A386807 (m=0), this sequence (m=1), A386809 (m=2), A386810 (m=3).

Programs

  • Mathematica
    f[p_, e_] := If[e == 5, 1, 0]; s[1] = 0; s[n_] := Plus @@ f @@@ FactorInteger[n]; Select[Range[3000], s[#] == 1 &]
  • PARI
    isok(k) = vecsum(apply(x -> if(x == 5, 1, 0), factor(k)[, 2])) == 1;

A386810 Numbers that have exactly three exponents in their prime factorization that are equal to 5.

Original entry on oeis.org

24300000, 130691232, 170100000, 267300000, 315900000, 413100000, 461700000, 558900000, 653456160, 704700000, 753300000, 899100000, 996300000, 1044900000, 1142100000, 1190700000, 1252332576, 1287900000, 1433700000, 1437603552, 1482300000, 1628100000, 1680700000
Offset: 1

Views

Author

Amiram Eldar, Aug 03 2025

Keywords

Comments

The asymptotic density of this sequence is Product_{p primes} (1 - 1/p^5 + 1/p^6) * (s(1)^3 + 3*s(1)*s(2) + 2*s(3)) / 6 = 1.38560245036673575581*10^(-8), where s(m) = (-1)^(m-1) * Sum_{p prime} (1/(p^6/(p-1)-1))^m (Elma and Martin, 2024).

Crossrefs

Numbers that have exactly three exponents in their prime factorization that are equal to k: A386798 (k=2), A386802 (k=3), A386806 (k=4), this sequence (k=5).
Numbers that have exactly m exponents in their prime factorization that are equal to 5: A386807 (m=0), A386808 (m=1), A386809 (m=2), this sequence (m=3).

Programs

  • Maple
    M:= 10^10: # for terms <= M
    B:= select(t -> ifactors(t)[2][..,2]=[1,1,1],[$1..floor(M^(1/5))]):
    R:= NULL:
    for i from 1 to nops(B) do
      Q:= select(t -> igcd(t,B[i]) = 1 and not member(5, ifactors(t)[2][..,2]), [$1 .. M/B[i]^5]);
      R:= R, op(B[i]^5 * Q);
    od:
    sort([R]); # Robert Israel, Aug 03 2025
  • Mathematica
    seq[lim_] := Module[{s = {}, sqfs = Select[Range[Surd[lim, 5]], SquareFreeQ[#] && PrimeNu[#] == 3 &]}, Do[s = Join[s, sqf^5 * Select[Range[lim/sqf^5], CoprimeQ[#, sqf] && !MemberQ[FactorInteger[#][[;; , 2]], 5] &]], {sqf, sqfs}]; Union[s]]; seq[2*10^9]
  • PARI
    isok(k) = vecsum(apply(x -> if(x == 5, 1, 0), factor(k)[, 2])) == 3;
Showing 1-6 of 6 results.