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.

A076375 Numbers k such that both k and 2*k are balanced numbers (A020492).

Original entry on oeis.org

1, 3, 6, 15, 35, 70, 105, 210, 357, 420, 1045, 1485, 2090, 2970, 3135, 3339, 5049, 5940, 6270, 10659, 12441, 12540, 16065, 24871, 24969, 29029, 33915, 35343, 39105, 39585, 49742, 50065, 58058, 58435, 64285, 70686, 71145, 74613, 78210, 87087
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]; If[IntegerQ[s]&&IntegerQ[s1], Print[n]], {n, 1, 100000}]