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.

A387161 Numbers k for which A324644(k)/A324198(k) = 3.

Original entry on oeis.org

2, 14, 26, 62, 74, 86, 122, 134, 146, 152, 176, 182, 206, 212, 224, 254, 272, 290, 302, 314, 326, 338, 368, 386, 422, 428, 434, 446, 476, 542, 554, 566, 578, 590, 626, 632, 644, 656, 662, 674, 680, 722, 734, 752, 782, 794, 812, 842, 848, 854, 866, 890, 914, 920, 926, 974, 1046, 1058, 1082, 1088, 1094, 1136, 1154
Offset: 1

Views

Author

Antti Karttunen, Aug 28 2025

Keywords

Crossrefs

Subsequences: A387163 (terms whose abundancy >= 3).
Cf. also A364286.

Programs

  • PARI
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    is_A387161(n) = { my(u=A276086(n)); (gcd(sigma(n), u)==3*gcd(n, u)); };