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

A324644 a(n) = gcd(sigma(n), A276086(n)).

Original entry on oeis.org

1, 3, 2, 1, 6, 1, 2, 15, 1, 9, 6, 1, 2, 3, 6, 1, 18, 1, 10, 3, 2, 9, 6, 5, 1, 3, 10, 1, 30, 1, 2, 21, 6, 9, 6, 7, 2, 15, 14, 45, 42, 1, 2, 21, 6, 9, 6, 1, 1, 3, 6, 7, 18, 5, 2, 15, 10, 45, 30, 7, 2, 3, 2, 1, 42, 1, 2, 21, 6, 9, 18, 5, 2, 3, 2, 35, 6, 7, 10, 3, 1, 63, 42, 7, 2, 3, 30, 45, 90, 1, 14, 21, 2, 9, 6, 7, 98, 3, 6, 7, 6, 1, 2, 105, 6
Offset: 1

Views

Author

Antti Karttunen, Mar 11 2019

Keywords

Crossrefs

Cf. A088828 (positions of even terms), A176693 (of odd terms).

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    A324644(n) = gcd(sigma(n),A276086(n));

Formula

a(n) = gcd(A000203(n), A276086(n)).

A351458 Numbers k for which k * gcd(sigma(k), A276086(k)) is equal to sigma(k) * gcd(k, A276086(k)), where A276086 is the primorial base exp-function, and sigma gives the sum of divisors of its argument.

Original entry on oeis.org

1, 10, 56, 9196, 9504, 56160, 121176, 239096, 354892, 411264, 555520, 716040, 804384, 904704, 1063348, 1387386, 1444352, 1454112, 1884800, 2708640, 3317248, 3548920, 4009824, 4634784, 6179712, 6795360, 7285248, 14511744, 16328466, 28377216, 29855232, 31940280, 37444736, 42711552, 49762944, 52815744
Offset: 1

Views

Author

Antti Karttunen, Feb 13 2022

Keywords

Comments

Numbers k such that k * A324644(k) = A000203(k) * A324198(k).
Numbers k such that gcd(A064987(k), A324580(k)) = gcd(A064987(k), A351252(k)).
Numbers k such that their abundancy index [sigma(k)/k] is equal to A324644(k)/A324198(k). See A364286.
A324644 gives odd values for even numbers and for the odd squares. A324198 is odd on all arguments, therefore on odd squares the above equation reduces to odd * odd = odd * odd, and on odd nonsquares as odd * even = even * odd. It is an open question whether there are any odd terms after the initial a(1)=1.
If k is even, but not a multiple of 3, then A276086(k) is a multiple of 3, but not even (i.e., is an odd multiple of 3). If for such k also sigma(k) = 3*k, then A007949(A324644(k)) = min(A007949(sigma(k)), A007949(A276086(k))) = 1, while A007949(A324198(k)) = min(A007949(k), A007949(A276086(k))) = 0, therefore all such k's do occur in this sequence, for example, the two known terms of A005820 (3-perfect numbers) that are not multiples of three: 459818240, 51001180160, but also any hypothetical term of A005820 of the form 4u+2, where 2u+1 is not multiple of 3, and which by necessity is then also an odd perfect number.
Similarly, of the 65 known 5-multiperfect numbers (A046060), those 20 that are not multiples of five are included in this sequence. Note that all 65 are multiples of six.
It is conjectured that the intersection of this sequence with the multiperfect numbers (A007691) gives A323653, see comments in the latter.
For all even terms k of this sequence, A007814(A000203(k)) = A007814(k), sigma preserves the 2-adic valuation, and A007949(A000203(k)) >= A007949(k), i.e., does not decrease the 3-adic valuation. The condition is equivalence (=) when k is a multiple of 6. With odd terms, any hypothetical odd perfect number x would yield a one greater 2-adic valuation for sigma(x) than for x, but would satisfy the main condition of this sequence. - Corrected Feb 17 2022
If k is a nonsquare positive odd number (in A088828), then it must be a term of A191218. - Antti Karttunen, Mar 10 2024

Crossrefs

Cf. also A351549.

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    isA351458(n) = { my(s=sigma(n), z=A276086(n)); (n*gcd(s,z))==(s*gcd(n,z)); };
    
  • PARI
    A006530(n) = if(1==n, n, my(f=factor(n)); f[#f~, 1]); \\ Works OK with rationals also!
    isA351458(n) = { my(orgn=n, s=sigma(n), abi=s/n, p=2, q=A006530(abi), d, e1, e2); while((1!=abi)&&(p<=q), d = n%p; e1 = min(d, valuation(s, p)); e2 = min(d, valuation(orgn, p)); d = e1-e2; if(valuation(abi,p)!=d, return(0), abi /= (p^d)); n = n\p; p = nextprime(1+p)); (abi==1); }; \\ (This implementation does not require the construction of largish intermediate numbers, A276086, but might still be slower and return a few false positives on the long run, so please check the results with the above program). - Antti Karttunen, Feb 19 2022

A371082 Composite numbers for which A324644(n)/A324198(n) = 2 and sigma(n) == 2 (mod 4).

Original entry on oeis.org

153, 477, 637, 909, 1017, 1233, 1557, 2097, 3577, 4753, 9457, 10693, 10933, 12393, 13357, 14013, 15337, 17629, 20817, 21097, 21217, 22021, 26353, 29449, 30037, 30717, 31117, 31149, 31797, 32013, 32229, 32337, 32481, 32977, 35557, 35917, 38637, 38725, 41797, 42237, 50029, 53557, 56497, 56677, 56953, 58621, 59437, 60309
Offset: 1

Views

Author

Antti Karttunen, Mar 10 2024

Keywords

Crossrefs

Intersection of A191218 and A364286.
Apparently also the intersection of A228058 and A364286.

Programs

  • Mathematica
    f[x_] := Block[{m, i, n = x, p}, m = i = 1; While[n > 0, p = Prime[i]; m *= p^Mod[n, p]; n = Quotient[n, p]; i++]; m]; Select[Select[Range[2^16], CompositeQ], GCD[#2, #3]/GCD[#1, #3] == Mod[#2, 4] == 2 & @@ {#, DivisorSigma[1, #], f[#]} &] (* Michael De Vlieger, Mar 10 2024 *)
  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    isA371082(n) = if(isprime(n) || (2!=(sigma(n)%4)), 0, my(u=A276086(n)); (gcd(sigma(n),u)==2*gcd(n,u)));

A386422 Odd numbers k that are closer to being perfect than previous terms and also satisfy the condition that A324644(k)/A324198(k) = 2.

Original entry on oeis.org

3, 33, 99, 135, 855, 2295, 19575, 38745, 63855, 121485, 371925, 3870195, 8109585, 28306005, 36340395, 113215095, 463084245, 672363615, 675916395, 686574735, 1208140395
Offset: 1

Views

Author

Antti Karttunen, Jul 21 2025

Keywords

Comments

Questions: Are there only multiples of 5 after the three initial terms? Are there any common terms with A228058?

Crossrefs

Apart from initial 3, a subsequence of A364286.
Cf. also A171929, A228059, A386419, A386420, A386421 for similar sequences.

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    is_A364286(n) = if(isprime(n), 0, my(u=A276086(n)); (gcd(sigma(n),u)==2*gcd(n,u))); \\ Antti Karttunen, Jul 21 2025
    m=-1; n=-1; k=0; while(m!=0, n+=2; if(!((n-1)%(2^25)),print1("("n")")); if(isprime(n) || is_A364286(n), if((m<0) || abs((sigma(n)/n)-2)
    				

A374476 Composite numbers k such that the least prime dividing the sum of divisors of k is equal to the least prime not dividing k.

Original entry on oeis.org

8, 15, 21, 27, 32, 33, 35, 39, 45, 50, 51, 55, 57, 63, 65, 69, 75, 77, 85, 87, 91, 93, 95, 98, 99, 105, 111, 115, 117, 119, 123, 125, 128, 129, 133, 135, 141, 143, 145, 147, 153, 155, 159, 161, 165, 171, 175, 177, 183, 185, 187, 189, 195, 196, 200, 201, 203, 205, 207, 209, 213, 215, 217, 219, 221, 231, 235, 237
Offset: 1

Views

Author

Antti Karttunen, Aug 06 2024

Keywords

Crossrefs

Intersection of A002808 and A374475.
Cf. A228058 (subsequence), and also A324534, A351458, A364286.

Programs

A387161 Numbers k for which A324644(k)/A324198(k) = 3.

Original entry on oeis.org

2, 14, 26, 62, 74, 86, 122, 134, 146, 152, 176, 182, 206, 212, 224, 254, 272, 290, 302, 314, 326, 338, 368, 386, 422, 428, 434, 446, 476, 542, 554, 566, 578, 590, 626, 632, 644, 656, 662, 674, 680, 722, 734, 752, 782, 794, 812, 842, 848, 854, 866, 890, 914, 920, 926, 974, 1046, 1058, 1082, 1088, 1094, 1136, 1154
Offset: 1

Views

Author

Antti Karttunen, Aug 28 2025

Keywords

Crossrefs

Subsequences: A387163 (terms whose abundancy >= 3).
Cf. also A364286.

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    is_A387161(n) = { my(u=A276086(n)); (gcd(sigma(n), u)==3*gcd(n, u)); };

A387165 Nondeficient numbers k for which A324644(k)/A324198(k) = 2.

Original entry on oeis.org

38745, 77805, 78435, 118755, 141075, 157815, 210735, 237195, 241605, 294975, 300105, 323505, 364455, 371925, 390195, 409185, 455715, 475335, 499905, 567945, 607635, 660825, 701415, 733005, 766395, 806085, 809325, 872235, 885465, 891135, 937755, 964845, 978705, 1101555, 1150065, 1201095, 1229445, 1265355, 1293705
Offset: 1

Views

Author

Antti Karttunen, Aug 28 2025

Keywords

Comments

First three nonmultiples of 5 occur at a(138), a(276), a(356) = 4446981, 8909901, 11234223. (Cf. A005231, A064001).

Crossrefs

Intersection of A023196 and A364286.

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    is_A387165(n) = if(sigma(n)<2*n, 0, my(u=A276086(n)); (gcd(sigma(n),u)==2*gcd(n,u)));

Formula

{k | sigma(k) >= 2*k, A324644(k) = 2*A324198(k)}.
Showing 1-7 of 7 results.