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.

A162692 Strictly positive numbers n such that 28*n/(28+n) are integers.

Original entry on oeis.org

21, 28, 70, 84, 168, 364, 756
Offset: 1

Views

Author

Keywords

Comments

The 28th row of A127730.
The ansatz 28*n/(28+n)=j (any integer j) yields n=28*j/(28-j) which demonstrates that the sequence is finite if n>=0. [R. J. Mathar, Jul 13 2009]

Crossrefs

Programs

  • Mathematica
    f[a_,b_]:=(a*b)/(a+b); a=28;lst={};Do[If[f[a,n]==IntegerPart[f[a,n]],AppendTo[lst,n]],{n,9!}];lst

Extensions

Edited by R. J. Mathar, Jul 13 2009