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.

A247191 Number of prime divisors, counted with multiplicity, of A180202(n), the product of the two numbers in the n-th amicable pair, A002025(n) * A002046(n).

Original entry on oeis.org

7, 10, 8, 8, 11, 10, 10, 11, 9, 12, 12, 11, 10, 11, 11, 16, 12, 9, 12, 12, 11, 10, 10, 9, 10, 11, 12, 11, 12, 12, 11, 11, 11, 11, 11, 11, 11, 11, 13, 11, 13, 11, 10, 10, 9, 13, 12, 12, 10, 12, 12, 10, 11, 9, 10, 14, 14, 10, 11, 13, 11, 11, 12, 10, 11, 11, 11
Offset: 1

Views

Author

Michel Marcus, Nov 23 2014

Keywords

Comments

Motivated by Theorem 3. in P. Pollack paper stating: Fix a natural number k. Then there are only finitely many amicable pairs (N,M) for which Omega(N*M) <= k.

Crossrefs

Programs

  • PARI
    lista() = {va = readvec("b002025.txt"); vb = readvec("b002046.txt"); for (i=1, 80, print1(bigomega(va[i]*vb[i]), ", "));}

Formula

a(n) = A001222(A180202(n)).
a(n) = A001222(A002025(n) * A002046(n)).

A259180 Amicable pairs.

Original entry on oeis.org

220, 284, 1184, 1210, 2620, 2924, 5020, 5564, 6232, 6368, 10744, 10856, 12285, 14595, 17296, 18416, 63020, 76084, 66928, 66992, 67095, 71145, 69615, 87633, 79750, 88730, 100485, 124155, 122265, 139815, 122368, 123152, 141664, 153176, 142310, 168730, 171856, 176336, 176272, 180848, 185368, 203432, 196724, 202444, 280540, 365084
Offset: 1

Views

Author

Omar E. Pol, Jun 20 2015

Keywords

Comments

A pair of numbers x and y is called amicable if the sum of the proper divisors (or aliquot parts) of either one is equal to the other.
This is A002025 and A002046 interleaved hence the amicable pairs (x < y), ordered by increasing x, are adjacent to each other in the list.
By definition a property of the amicable pair (x, y) is that x + y = sigma(x) = sigma(y).
Amicable numbers A063990 are the terms of this sequence in increasing order.
First differs from A063990 at a(18).
For another version see A259933.
First differs from A259933 at a(17).

Examples

			  ------------------------------------
         Amicable pair          Sum
            x      y           x + y
  ------------------------------------
   n    A002025 A002046      A180164
  ------------------------------------
   1       220     284          504
   2      1184    1210         2394
   3      2620    2924         5544
   4      5020    5564        10584
   5      6232    6368        12600
   6     10744   10856        21600
   7     12285   14595        26880
   8     17296   18416        35712
   9     63020   76084       139104
  10     66928   66992       133920
  11     67095   71145       138240
  12     69615   87633       157248
  ...      ...     ...          ...
The sum of the proper divisors (or aliquot parts) of 220 is 1 + 2 + 4 + 5 + 10 + 11 + 20 + 22 + 44 + 55 + 110 = 284. On the other hand the sum of the proper divisors (or aliquot parts) of 284 is 1 + 2 + 4 + 71 + 142 = 220. Note that 220 + 284 = sigma(220) = sigma(284) = 504. The smallest amicable pair is (220, 284), so a(1) = 220 and a(2) = 284.
		

Crossrefs

Programs

  • Mathematica
    f[n_] := Block[{s = {}, g, k}, g[x_] := DivisorSigma[1, x] - x; Do[k = g@ i; If[And[g@ k == i, k != i, ! MemberQ[s, i]], s = s~Join~{i, k}], {i, n}]; s]; f@ 300000 (* Michael De Vlieger, Jul 02 2015 *)
  • PARI
    A259180_upto(N, L=List(), s)={ forfactored(n=1, N, (s=sigma(n[2]))>2*n[1] && sigma(s-n[1])==s && listput(L, [n[1], s-n[1]]));concat(L)} \\ M. F. Hasler, Oct 11 2019

Formula

a(2n-1) = A002025(n); a(2n) = A002046(n).
a(2n-1) + a(2n) = A000203(a(2n-1)) = A000203(a(2n)) = A180164(n).

A180163 Products of pairs of amicable numbers (see A063990).

Original entry on oeis.org

62480, 1432640, 7660880, 27931280, 39685376, 116636864, 179299575, 318523136, 4217802560, 4494828240, 4952759175, 6067699000, 7775676090, 12285798525, 15069863936, 17358731325, 20160203840, 25845386480, 30293400832
Offset: 1

Views

Author

Jonathan Vos Post, Aug 14 2010

Keywords

Comments

For a more reasonable sequence, in which both factors always belong to the same amicable pair, see A180202, which first differs from this sequence at a(9). - Omar E. Pol, Oct 25 2017

Examples

			a(1) = 220 * 284 = 62480 = 2^4 * 5 * 11 * 71.
a(2) = 1184 * 1210 = 1432640 = 2^6 * 5 * 11^2 * 37.
		

Crossrefs

Formula

a(n) = A063990(2*n-1) * A063990(2*n).
Showing 1-3 of 3 results.