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.

A191973 Irregular triangle read by rows: row n consists of n and the positive integers m where m-n divides m*n.

Original entry on oeis.org

1, 2, 1, 2, 3, 4, 6, 2, 3, 4, 6, 12, 2, 3, 4, 5, 6, 8, 12, 20, 4, 5, 6, 10, 30, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 18, 24, 42, 6, 7, 8, 14, 56, 4, 6, 7, 8, 9, 10, 12, 16, 24, 40, 72, 6, 8, 9, 10, 12, 18, 36, 90, 5, 6, 8, 9, 10, 11, 12, 14, 15, 20, 30, 35, 60
Offset: 1

Views

Author

Nathaniel Johnston, Jun 22 2011

Keywords

Comments

The maximum term of the n-th row is n*(n+1). The minimum term of the n-th row seems to be A063428(n) if n>=2. The length of row n is A146564(n) + 1.

Examples

			The triangle begins:
1 2
1 2 3 4  6
2 3 4 6  12
2 3 4 5  6  8  12 20
4 5 6 10 30
2 3 4 5  6  7  8  9  10 12 15 18 24 42
6 7 8 14 56
...
		

Crossrefs

Cf. A162821 (row 30), A162822 (row 36), A162823 (row 42), A162824 (row 48), A162825 (row 60), A127730.

Programs

  • Maple
    for n from 1 to 10 do for m from 1 to n*(n+1) do if(n=m or m*n mod (m-n) = 0)then printf("%d, ",m): fi: od: od:

A162826 Positive numbers n such that 2*60*n/(60+n) are integers.

Original entry on oeis.org

12, 15, 20, 30, 36, 40, 60, 84, 90, 100, 120, 140, 165, 180, 228, 240, 300, 340, 390, 420, 540, 660, 740, 840, 1140, 1380, 1740, 2340, 3540, 7140
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    f[a_,b_]:=(a*b)/(a+b)*2; a=60;lst={};Do[If[f[a,n]==IntegerPart[f[a,n]], AppendTo[lst,n]],{n,9!}];lst
    Select[Range[8000],IntegerQ[(120#)/(60+#)]&] (* Harvey P. Dale, Mar 19 2019 *)

Extensions

Sign in definition flipped by R. J. Mathar, Jul 31 2009

A162828 Positive numbers n such that 2*90*n/(90+n) are integers.

Original entry on oeis.org

10, 18, 30, 45, 60, 72, 90, 110, 126, 135, 180, 210, 234, 270, 315, 360, 450, 510, 558, 585, 720, 810, 990, 1260, 1530, 1710, 1935, 2610, 3150, 3960, 5310, 8010, 16110
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    f[a_,b_]:=(a*b)/(a+b)*2; a=90;lst={};Do[If[f[a,n]==IntegerPart[f[a,n]], AppendTo[lst,n]],{n,9!}];lst
    Select[Range[17000],IntegerQ[180 #/(#+90)]&] (* Harvey P. Dale, Sep 22 2011 *)

Extensions

Sign in definition flipped by R. J. Mathar, Jul 31 2009

A162829 Positive numbers n such that 2*120*n/(120+n) are integers.

Original entry on oeis.org

8, 24, 30, 40, 60, 72, 80, 105, 120, 168, 180, 200, 240, 264, 280, 330, 360, 456, 480, 520, 600, 680, 780, 840, 1032, 1080, 1320, 1480, 1680, 1800, 2280, 2760, 3080, 3480, 4680, 5640, 7080, 9480, 14280, 28680
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    f[a_,b_]:=(a*b)/(a+b)*2; a=120;lst={};Do[If[f[a,n]==IntegerPart[f[a,n]], AppendTo[lst,n]],{n,9!}];lst
    Select[Range[30000],IntegerQ[240 #/(120+#)]&] (* Harvey P. Dale, Apr 09 2014 *)

Extensions

Sign in definition flipped by R. J. Mathar, Jul 31 2009
Showing 1-4 of 4 results.