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.

Previous Showing 11-15 of 15 results.

A162824 Positive numbers k such that 48*k/(48-k) are integers.

Original entry on oeis.org

12, 16, 24, 30, 32, 36, 39, 40, 42, 44, 45, 46, 47, 48, 49, 50, 51, 52, 54, 56, 57, 60, 64, 66, 72, 80, 84, 96, 112, 120, 144, 176, 192, 240, 304, 336, 432, 624, 816, 1200, 2352
Offset: 1

Views

Author

Keywords

Comments

The number k=48 is explicitly included.
Row 48 of A191973.

Crossrefs

Programs

  • Maple
    for m from 1 to 2352 do if(m=48 or m*48 mod (m-48) = 0)then printf("%d, ", m): fi: od: # Nathaniel Johnston, Jun 22 2011
  • Mathematica
    f[a_,b_]:=(a*b)/(a-b); a=48;lst={};Do[If[f[a,n]==IntegerPart[f[a,n]], AppendTo[lst,n]],{n,9!}];lst

Extensions

Keywords fini,full added by R. J. Mathar, Jul 31 2009

A162825 Positive numbers k such that 60*k/(60-k) are integers.

Original entry on oeis.org

10, 12, 15, 20, 24, 30, 35, 36, 40, 42, 44, 45, 48, 50, 51, 52, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 68, 69, 70, 72, 75, 76, 78, 80, 84, 85, 90, 96, 100, 105, 108, 110, 120, 132, 135, 140, 150, 160, 180, 204, 210, 240, 260, 285, 300, 360, 420
Offset: 1

Views

Author

Keywords

Comments

The number k=60 is explicitly included. The last entry in the sequence is a(68) = 3660.
Row 60 of A191973.

Crossrefs

Programs

  • Maple
    for n from 1 to 3660 do if(n=60 or type(60*n/(60-n),integer))then printf("%d, ",n): fi: od: # Nathaniel Johnston, Jun 22 2011
  • Mathematica
    f[a_,b_]:=(a*b)/(a-b); a=60;lst={};Do[If[f[a,n]==IntegerPart[f[a,n]], AppendTo[lst,n]],{n,9!}];lst
    Select[Range[500],If[#==60,True,IntegerQ[(60#)/(60-#)]]&] (* Harvey P. Dale, Sep 26 2023 *)

Extensions

Keyword fini added by R. J. Mathar, Jul 31 2009

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
Previous Showing 11-15 of 15 results.