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.

A226361 Numbers n such that sigma(n) = sigma(n+1) + sigma(n+2).

Original entry on oeis.org

378624, 661152, 5479092, 5526024, 7179624, 18744216, 122321970, 168201288, 215676636, 778701984, 1482154170, 1788138780, 1974360132, 2288979096, 3361923780, 4214315484, 4757106144, 4971510492, 6264306144, 6884356716, 10730488296, 11375549304, 16851779736
Offset: 1

Views

Author

Alex Ratushnyak, Jun 05 2013

Keywords

Crossrefs

Programs

  • Mathematica
    nn = 10^7; t = {}; sig0 = 1; sig1 = 3; Do[sig2 = DivisorSigma[1, n + 2]; If[sig0 == sig1 + sig2, AppendTo[t, n]]; sig0 = sig1; sig1 = sig2, {n, nn}]; t (* T. D. Noe, Jun 05 2013 *)

Extensions

a(17)-a(23) from Donovan Johnson, Jun 05 2013