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-10 of 16 results. Next

A036471 Four numbers (a,b,c,d) with aA036472, A036473, A036474, A116148) respectively.

Original entry on oeis.org

3270960, 3767400, 4651920, 4969440, 5682600, 5405400, 6514200, 6126120, 6126120, 6320160, 6977880, 7013160, 6819120, 6966960, 7706160, 7731360, 7469280, 7469280, 8353800, 8288280, 8316000, 9258480, 9009000, 10048500, 9840600, 9923760, 9563400
Offset: 1

Views

Author

Keywords

Comments

The sequence also contains the numbers 342151462276356306033089201934180, 6060968760324025992586151577119760, 99321681620793716265605322618607680, 409974875795109961540320351530842460160
The corresponding terms of A036472 would be: 357033595420351636473024008945820, 6324595118874800417522139587040240, 103641752270593503616169255168272320, 427807038915744951493564658435688099840
The corresponding terms of A036473 would be: 410581874773947356773179298713756, 7273164638852781748553461862929392, 119186052791523004137585762140907456, 491969994791994923787572902146102915072
The corresponding terms of A036474 would be: 428440439768072020710436590182244, 7589516361605847224013448168942608, 124370139086960335154801021607188544, 513368596793092084536932368118163836928
As stated, we first order by common sigma value. When the common value of sigma is the same for several quadruples, these are then sorted (ascending) by the smallest member. When the smallest members also agree, we go on to the second smallest members, and so on, lexicographically. - Jeppe Stig Nielsen, Feb 02 2015
Of the first 2000 quadruples, there are 78 cases where both the value of sigma, the value of the smallest member (a), and the value of the second smallest member (b) agree with those of the previous quadruple. The first time this happens is for n=17 and n=18 which correspond to the tuples (7469280, 8157240, 8873760, 9368520) and (7469280, 8157240, 9098460, 9143820), respectively. - Jeppe Stig Nielsen, Feb 02 2015

Crossrefs

Cf. A125490 - A125492 and A137231 (amicable triples).
Cf. A233553 for amicable 5-tuples.

Extensions

The present first term was found by Dean Hickerson, Nov 06 2006
That this is the first term was confirmed by Giovanni Resta, Nov 14 2006, who also found a(2)-a(18).
Edited by N. J. A. Sloane, Nov 07 2006 and Nov 27 2006

A116148 Amicable quadruples: the values of sigma corresponding to A036471-A036474.

Original entry on oeis.org

13927680, 16248960, 19498752, 21228480, 24373440, 24998400, 27855360, 28304640, 28304640, 29030400, 29030400, 29877120, 29998080, 29998080, 32497920, 33022080, 33868800, 33868800, 37497600, 37739520, 37739520, 38997504, 40884480, 40884480
Offset: 1

Views

Author

Giovanni Resta, Nov 14 2006

Keywords

Comments

Note that repetitions occur.

Crossrefs

A002025 Smaller of an amicable pair: (a,b) such that sigma(a) = sigma(b) = a+b, a < b.

Original entry on oeis.org

220, 1184, 2620, 5020, 6232, 10744, 12285, 17296, 63020, 66928, 67095, 69615, 79750, 100485, 122265, 122368, 141664, 142310, 171856, 176272, 185368, 196724, 280540, 308620, 319550, 356408, 437456, 469028, 503056, 522405, 600392, 609928
Offset: 1

Views

Author

Keywords

Comments

Sometimes called friendly numbers, but this usage is deprecated.
All terms are abundant (A005101). - Michel Marcus, Mar 10 2013
See A125490-A125492 and A137231 for amicable triples, A036471-A036474 and A116148 for amicable quadruples, and A233553 for amicable quintuples. - M. F. Hasler, Dec 14 2013
This sequence is strictly increasing (and A002046, which contains the larger (deficient) number in each pair, is sorted by this sequence). - Jeppe Stig Nielsen, Jan 27 2015
For the related amicable pairs see A259180. - Omar E. Pol, Jul 15 2015
Pomerance (1981) shows that there are at most x*exp(-log(x)^(1/3)) terms of this sequence up to x. In particular, as originally demonstrated by Erdős, this sequence has density 0. - Charles R Greathouse IV, Aug 17 2017

References

  • Mariano Garcia, Jan Munch Pedersen and Herman te Riele, Amicable pairs - a survey, pp. 179-196 in: Alf van der Poorten and Andres Stein (eds.), High Primes and Misdemeanours: Lectures in Honour of the 60th Birthday of Hugh Cowie Williams, Fields Institute Communications, AMS, Providence RI, 2004.
  • Alfred S. Posamentier, Math Charmers, Tantalizing Tidbits for the Mind, Prometheus Books, NY, 2003, pages 48-49.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Mathematica
    Reap[For[n = 1, n <= 10^6, n++, If[(s = DivisorSigma[1, n]) > 2n && DivisorSigma[1, s - n] == s, Print[n]; Sow[n]]]][[2, 1]] (* Jean-François Alcover, Oct 09 2015, after M. F. Hasler *)
  • PARI
    aliquot(n)=sigma(n)-n
    isA002025(n)={if (n>1, local(a);a=aliquot(n);a>n && aliquot(a)==n)} \\ Michael B. Porter, Apr 11 2010
    
  • PARI
    for(n=1,1e6,(s=sigma(n))>2*n && sigma(s-n)==s && print1(n",")) \\ M. F. Hasler, Dec 14 2013
    
  • PARI
    forfactored(n=1,10^6, t=sigma(n[2])-n[1]; if(t>n[1] && sigma(t)==n[1]+t, print1(n[1]", "))) \\ Charles R Greathouse IV, Aug 17 2017

Formula

a(n) = A259180(2n-1) = A180164(n) - A259180(2n) = A180164(n) - A002046(n). - Omar E. Pol, Jul 15 2015

Extensions

More terms from Larry Reeves (larryr(AT)acm.org), Oct 24 2000

A125490 Amicable triples: numbers such that sigma(x) = sigma(y) = sigma(z) = x+y+z, x

Original entry on oeis.org

1980, 9180, 21168, 23940, 37380, 38940, 38940, 39480, 46368, 47124, 53088, 57420, 66720, 67860, 69720, 73320, 75180, 77490, 72072, 86040, 93456, 96660, 92820, 100980, 100980, 112140, 118944, 121800, 139080, 141372
Offset: 1

Views

Author

Yasutoshi Kohmoto, Dec 11 2006

Keywords

Comments

G. Resta computed these terms.
As stated, we first order by common sigma value. When the common value of sigma is the same for several triples, these are then sorted (ascending) by the smallest member. When the smallest members also agree, we go on to the second smallest members, and so on, lexicographically. - John Cerkan, Jun 18 2016

Examples

			1980 is in the sequence since sigma(1980) = sigma(2016) = sigma(2556) = 6552 = 1980 + 2016 + 2556. - _Michael B. Porter_, Jun 29 2016
		

Crossrefs

Cf. A125491, A125492, A137231 (x+y+z).
Cf. A036471 - A036474 and A116148 (amicable quadruples).
Cf. A233553 for amicable 5-tuples.
Cf. A000203 (sigma function).

Extensions

Definition corrected by N. J. A. Sloane, Nov 27 2008
a(13)-a(30) from Donovan Johnson, Apr 14 2010

A233553 Amicable 5-tuples: (x1,...,x5) such that sigma(x1)=...=sigma(x5)=x1+...+x5. Groups of 5 subsequent terms list the five members in increasing size.

Original entry on oeis.org

53542288800, 59509850400, 59999219280, 60074174160, 61695597600, 67154527440, 68763895200, 69626138400, 71957405520, 72598125600, 67509842400, 72747675000, 73605331800, 75710489400, 78953074200, 87113426400, 88410722400, 89398663200, 96058282320, 96369633360
Offset: 1

Views

Author

M. F. Hasler, Dec 12 2013

Keywords

Comments

The 5-tuple starting with 53542288800 was given by Donovan Johnson. The common value of sigma(x) is 294821130240.
A larger 5-tuple, (55766707476480, 56992185169920, 57515254917120, 57754372515840, 57829096765440), was found by Michel Marcus on Dec 09 2013. The common value of sigma(x) is 285857616844800.
A still larger example (227491164588441600, 228507506351308800, 229862628701798400, 230878970464665600, 243752632794316800), probably the first one to be published, had been found by Yasutoshi Kohmoto in 2008, cf. link to SeqFan post.
There are different definitions for amicable k-tuples, cf. link to MathWorld.

Crossrefs

Cf. A036471 - A036474 and A116148 (quadruples).
Cf. A125490 - A125492 and A137231 (triples).

Extensions

More terms from John Cerkan, Jun 05 2016

A273928 Amicable 5-tuples: (x1,...,x5) such that sigma(x1)=...=sigma(x5)=x1+...+x5, x1

Original entry on oeis.org

53542288800, 67154527440, 67509842400, 87113426400, 87502615200, 86133247200, 86133247200, 86133247200, 98471252880
Offset: 1

Views

Author

John Cerkan, Jun 04 2016

Keywords

Comments

The 5-tuple starting with 53542288800 was given by Donovan Johnson. The common value of sigma(x) is 294821130240.
A larger 5-tuple, (55766707476480, 56992185169920, 57515254917120, 57754372515840, 57829096765440), was found by Michel Marcus on Dec 09 2013. The common value of sigma(x) is 285857616844800.
A still larger example (227491164588441600, 228507506351308800, 229862628701798400, 230878970464665600, 243752632794316800), probably the first one to be published, had been found by Yasutoshi Kohmoto in 2008, cf. link to SeqFan post.
Other terms from John Cerkan.
There are different definitions for amicable k-tuples, cf. link to MathWorld.

Crossrefs

Cf. A036471 - A036474 and A116148 (quadruples).
Cf. A125490 - A125492 and A137231 (triples).

A273930 Amicable 5-tuples: (x1,...,x5) such that sigma(x1)=...=sigma(x5)=x1+...+x5, x1

Original entry on oeis.org

59509850400, 68763895200, 72747675000, 88410722400, 88021533600, 89894684880, 89894684880, 90391981680, 102481394400
Offset: 1

Views

Author

John Cerkan, Jun 04 2016

Keywords

Comments

The 5-tuple starting with 53542288800 was given by Donovan Johnson. The common value of sigma(x) is 294821130240.
A larger 5-tuple, (55766707476480, 56992185169920, 57515254917120, 57754372515840, 57829096765440), was found by Michel Marcus on Dec 09 2013. The common value of sigma(x) is 285857616844800.
A still larger example (227491164588441600, 228507506351308800, 229862628701798400, 230878970464665600, 243752632794316800), probably the first one to be published, had been found by Yasutoshi Kohmoto in 2008, cf. link to SeqFan post.
Other terms from John Cerkan.
There are different definitions for amicable k-tuples, cf. link to MathWorld.

Crossrefs

Cf. A036471 - A036474 and A116148 (quadruples).
Cf. A125490 - A125492 and A137231 (triples).

A273931 Amicable 5-tuples: (x1,...,x5) such that sigma(x1)=...=sigma(x5)=x1+...+x5, x1

Original entry on oeis.org

59999219280, 69626138400, 73605331800, 89398663200, 89398663200, 90391981680, 94320626400, 94832992800, 103169959200
Offset: 1

Views

Author

John Cerkan, Jun 04 2016

Keywords

Comments

The 5-tuple starting with 53542288800 was given by Donovan Johnson. The common value of sigma(x) is 294821130240.
A larger 5-tuple, (55766707476480, 56992185169920, 57515254917120, 57754372515840, 57829096765440), was found by Michel Marcus on Dec 09 2013. The common value of sigma(x) is 285857616844800.
A still larger example (227491164588441600, 228507506351308800, 229862628701798400, 230878970464665600, 243752632794316800), probably the first one to be published, had been found by Yasutoshi Kohmoto in 2008, cf. link to SeqFan post.
Other terms from John Cerkan.
There are different definitions for amicable k-tuples, cf. link to MathWorld.

Crossrefs

Cf. A036471 - A036474 and A116148 (quadruples).
Cf. A125490 - A125492 and A137231 (triples).

A273933 Amicable 5-tuples: (x1,...,x5) such that sigma(x1)=...=sigma(x5)=x1+...+x5, x1

Original entry on oeis.org

60074174160, 71957405520, 75710489400, 96058282320, 96058282320, 97306569360, 96759542880, 94972878000, 109117562400
Offset: 1

Views

Author

John Cerkan, Jun 04 2016

Keywords

Comments

The 5-tuple starting with 53542288800 was given by Donovan Johnson. The common value of sigma(x) is 294821130240.
A larger 5-tuple, (55766707476480, 56992185169920, 57515254917120, 57754372515840, 57829096765440), was found by Michel Marcus on Dec 09 2013. The common value of sigma(x) is 285857616844800.
A still larger example (227491164588441600, 228507506351308800, 229862628701798400, 230878970464665600, 243752632794316800), probably the first one to be published, had been found by Yasutoshi Kohmoto in 2008, cf. link to SeqFan post.
Other terms from John Cerkan.
There are different definitions for amicable k-tuples, cf. link to MathWorld.

Crossrefs

Cf. A036471 - A036474 and A116148 (quadruples).
Cf. A125490 - A125492 and A137231 (triples).

A273934 Amicable 5-tuples: (x1,...,x5) such that sigma(x1)=...=sigma(x5)=x1+...+x5, x1

Original entry on oeis.org

61695597600, 72598125600, 78953074200, 96369633360, 96369633360, 103073639760, 99692021520, 100469023200, 109446377040
Offset: 1

Views

Author

John Cerkan, Jun 04 2016

Keywords

Comments

The 5-tuple starting with 53542288800 was given by Donovan Johnson. The common value of sigma(x) is 294821130240.
A larger 5-tuple, (55766707476480, 56992185169920, 57515254917120, 57754372515840, 57829096765440), was found by Michel Marcus on Dec 09 2013. The common value of sigma(x) is 285857616844800.
A still larger example (227491164588441600, 228507506351308800, 229862628701798400, 230878970464665600, 243752632794316800), probably the first one to be published, had been found by Yasutoshi Kohmoto in 2008, cf. link to SeqFan post.
Other terms from John Cerkan.
There are different definitions for amicable k-tuples, cf. link to MathWorld.

Crossrefs

Cf. A036471 - A036474 and A116148 (quadruples).
Cf. A125490 - A125492 and A137231 (triples).
Showing 1-10 of 16 results. Next