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.

A076376 Numbers k such that k, 2*k and 4*k are balanced numbers (A020492).

Original entry on oeis.org

3, 35, 105, 210, 1045, 1485, 2970, 3135, 6270, 24871, 29029, 35343, 39105, 50065, 58435, 64285, 70686, 71145, 74613, 78210, 87087, 87685, 124605, 137885, 140335, 142290, 149226, 150195, 174174, 175305, 176715, 192855, 249210, 263055, 300390, 350610, 373065
Offset: 1

Views

Author

Labos Elemer, Oct 15 2002

Keywords

Crossrefs

Programs

  • Mathematica
    f[x_] := DivisorSigma[1, x]/EulerPhi[x] Do[s=f[n]; s1=f[2*n]; s2=f[4*n]; If[IntegerQ[s]&&IntegerQ[s1]&&IntegerQ[s2], Print[n]], {n, 1, 1000000}]