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.

A325963 Numbers n for which A034448(n)-n is equal to n-A048250(n).

Original entry on oeis.org

1, 4, 24, 240, 349440
Offset: 1

Views

Author

Antti Karttunen, Jun 04 2019

Keywords

Comments

No other terms below 536870912 (2^29).
a(6) > 10^12, if it exists. - Giovanni Resta, Jun 07 2019

Crossrefs

Positions of zeros in A325977.

Programs

  • PARI
    A034448(n) = { my(f=factorint(n)); prod(k=1, #f~, 1+(f[k, 1]^f[k, 2])); };
    A048250(n) = factorback(apply(p -> p+1,factor(n)[,1]));
    isA325963(n) = ((A034448(n)-n) == (n-A048250(n)));