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.

Showing 1-1 of 1 results.

A320514 Numbers k such that sigma(sigma(k)) < 2*k + 1.

Original entry on oeis.org

1, 2, 4, 9, 13, 16, 25, 37, 43, 49, 61, 64, 67, 73, 81, 97, 109, 121, 151, 157, 163, 169, 181, 193, 211, 225, 229, 241, 277, 283, 289, 313, 331, 337, 361, 373, 397, 409, 421, 433, 457, 487, 523, 529, 541, 547, 577, 601, 613, 625, 631, 661, 673, 691, 709, 729, 733, 751, 757, 787, 823, 829, 841, 853, 877
Offset: 1

Views

Author

Peter Luschny, Oct 14 2018

Keywords

Crossrefs

Programs

  • Maple
    isA320514 := n -> sigma(sigma(n)) < 2*n+1:
    select(isA320514, [$1..1000]);
  • Mathematica
    Select[Range[1000], DivisorSigma[1, DivisorSigma[1, #]] < 2*# + 1 &] (* Vaclav Kotesovec, Oct 14 2018 *)
  • PARI
    isok(n) = sigma(sigma(n)) < 2*n + 1; \\ Michel Marcus, Oct 14 2018
Showing 1-1 of 1 results.