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.

A387711 Numbers k for which A003959(k) > 2*k, where A003959 is multiplicative with a(p^e) = (p+1)^e.

Original entry on oeis.org

4, 8, 12, 16, 18, 20, 24, 27, 28, 30, 32, 36, 40, 42, 44, 45, 48, 50, 52, 54, 56, 60, 63, 64, 66, 68, 70, 72, 76, 78, 80, 81, 84, 88, 90, 92, 96, 100, 102, 104, 108, 112, 114, 116, 120, 124, 126, 128, 132, 135, 136, 138, 140, 144, 148, 150, 152, 156, 160, 162, 164, 168, 172, 174, 176, 180, 184, 186, 188, 189, 192, 196
Offset: 1

Views

Author

Antti Karttunen, Sep 06 2025

Keywords

Crossrefs

Disjoint union of A387712 and A387713. Positions of nonzero terms in A387715.
Subsequence of A005101, and of A246282.
After the initial 4 also a subsequence of A033942.

Programs

  • PARI
    A003959(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1]++); factorback(f); };
    is_A387711(n) = (A003959(n)>(2*n));