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.

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