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

A378736 Greatest divisor d of the n-th abundant number such that sigma(d) <= 2*d < A003961(d).

Original entry on oeis.org

6, 9, 10, 8, 15, 9, 10, 21, 16, 27, 28, 15, 6, 35, 9, 39, 16, 28, 44, 45, 32, 50, 6, 52, 27, 28, 57, 15, 63, 44, 69, 35, 16, 75, 52, 32, 81, 28, 6, 44, 45, 6, 64, 98, 99, 50, 68, 52, 105, 27, 110, 6, 32, 76, 117, 16, 6, 63, 6, 130, 44, 135, 136, 92, 35, 6, 32, 147, 75, 152, 153, 154, 52, 6, 64, 81, 165, 28, 170, 171
Offset: 1

Views

Author

Antti Karttunen, Dec 06 2024

Keywords

Comments

There are no 1's in this sequence. See A378662, A378664 and A337372 for a proof.

Crossrefs

Programs

  • PARI
    A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
    A294935(n) = (sigma(n)<=(2*n));
    A341612(n) = ((sigma(n)<=(2*n))&&((2*n)<A003961(n)));
    A378664(n) = { fordiv(n,d,if(A341612(n/d), return(n/d))); (1); };
    k=0; n=0; while(k<20000, n++; if(!A294935(n), k++; print1(A378664(n),", ")));

Formula

a(n) = A378664(A005101(n)).
a(n) <= A378735(n).

Extensions

Unnecessary escape-clause removed from the definition by Antti Karttunen, Dec 12 2024

A378738 Primitively abundant numbers k for which A378665(k) > A378664(k).

Original entry on oeis.org

66, 102, 174, 186, 222, 246, 258, 282, 318, 354, 366, 402, 426, 438, 474, 498, 534, 582, 606, 618, 642, 654, 678, 748, 762, 786, 822, 834, 894, 906, 942, 978, 1002, 1038, 1074, 1086, 1146, 1158, 1182, 1194, 1266, 1338, 1362, 1374, 1398, 1434, 1446, 1506, 1542, 1578, 1614, 1626, 1662, 1686, 1698, 1758, 1842, 1866
Offset: 1

Views

Author

Antti Karttunen, Dec 07 2024

Keywords

Comments

Subsequence of A378737: 1496 is its first term that does not occur here.
Equal to primitively abundant numbers k such that A032742(k) > A378664(k), because for primitively abundant numbers the greatest non-abundant divisor is the largest proper divisor, A378665(k) = A032742(k).
Question: What is the asymptotic density of these numbers among A091191? Does it tend to 1?
Conjecture: A001222(a(n)) = 3 <=> 3|a(n).

Examples

			Examples given in A378737 for 66, 748, 1866, and 1870 all work also here, because those four numbers are all in A091191.
		

Crossrefs

Intersection of A091191 and A378737.
Cf. A001222, A032742, A294930, A337372, A341612, A341614, A378664, A378665, A378735, A378736, A378739 [= A378664(a(n))], A378741 (subsequence), A378742 (subsequence after its initial term).

Programs

  • PARI
    A003961(n) = { my(f = factor(n)); for (i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
    A341612(n) = ((sigma(n)<=(2*n))&&((2*n)<A003961(n)));
    A378664(n) = { fordiv(n,d,if(A341612(n/d), return(n/d))); (1); };
    A032742(n) = if(1==n,n,n/vecmin(factor(n)[,1]));
    is_A091191(n) = if(sigma(n)<=2*n, 0, fordiv(n,d,if(d2*d, return(0))); (1));
    is_A378738(n) = (is_A091191(n) && (A378664(n)!=A032742(n)));

Formula

{k such that A294930(k) = 1 and A032742(k) > A378664(k)}.

A378665 Greatest non-abundant divisor of n.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 6, 13, 14, 15, 16, 17, 9, 19, 10, 21, 22, 23, 8, 25, 26, 27, 28, 29, 15, 31, 32, 33, 34, 35, 9, 37, 38, 39, 10, 41, 21, 43, 44, 45, 46, 47, 16, 49, 50, 51, 52, 53, 27, 55, 28, 57, 58, 59, 15, 61, 62, 63, 64, 65, 33, 67, 68, 69, 35, 71, 9, 73, 74, 75, 76, 77, 39, 79, 16, 81, 82, 83, 28
Offset: 1

Views

Author

Antti Karttunen, Dec 06 2024

Keywords

Comments

Largest term of A263837 that divides n.

Examples

			For n=10, which is a non-abundant number because sigma(10) = 18 < 2*10, its greatest divisor that is not abundant is 10 itself, thus a(10) = 10.
For n=12, which is an abundant number because sigma(12) = 28 > 2*12, its greatest divisor that itself is not abundant is 6, as sigma(6) = 12. Thus a(12) = 6.
		

Crossrefs

Programs

  • Mathematica
    a[n_]:=Max[Select[Divisors[n], DivisorSigma[1,#]<=2# &]]; Array[a,84] (* Stefano Spezia, Dec 06 2024 *)
  • PARI
    A294935(n) = (sigma(n)<=(2*n));
    A378665(n) = { fordiv(n,d,if(A294935(n/d), return(n/d))); (1); };

Formula

a(n) = n / A378660(n).
a(n) >= A378664(n).

A378737 Abundant numbers k for which A378665(k) > A378664(k).

Original entry on oeis.org

66, 102, 174, 186, 222, 246, 258, 282, 318, 354, 366, 402, 426, 438, 474, 498, 534, 582, 606, 618, 642, 654, 678, 748, 762, 786, 822, 834, 894, 906, 942, 978, 1002, 1038, 1074, 1086, 1146, 1158, 1182, 1194, 1266, 1338, 1362, 1374, 1398, 1434, 1446, 1496, 1506, 1542, 1578, 1614, 1626, 1662, 1686, 1698, 1758, 1842
Offset: 1

Views

Author

Antti Karttunen, Dec 06 2024

Keywords

Comments

For most of these numbers k, A378664(k) = 6. Note that A003961(6) = A003961(2*3) = 3*5 = 15 > 2*6, while sigma(6) = 12, making 6 non-abundant. Note that there seems to be only a finite amount (namely 13, see A337372) of such "stopper semiprimes" that would prevent of A378736 obtaining value 1.
Other possible values that A378664 obtains on these numbers are for example 68, 136, 170, 256, 290, 370, 410, 430, 470, 530, 646, 682, 754, 1276, 1292, 1364, 1508, 1628, 1804, 1892, 2068, 2332, 4756, 6844, 10846, 15334, etc. See A378740, which contains some of these.

Examples

			66 is a term as A378665(66) = 33, but A378664(66) = 6.
748 is a term as A378665(748) = 374, but A378664(748) = 68.
1866 is a term as A378665(1866) = 933, but A378664(1866) = 6.
1870 is a term as A378665(1870) = 935, but A378664(1870) = 170.
		

Crossrefs

Subsequence of A005101.
Cf. A378738 (subsequence).

Programs

Formula

{A005101(i) for such indices i where A378735(i) > A378736(i)}.
Showing 1-4 of 4 results.