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.

A335915 Fully multiplicative with a(2) = 1, and a(p) = A000265(p-1)*A000265(p+1) = A000265(p^2 - 1), for odd primes p.

Original entry on oeis.org

1, 1, 1, 1, 3, 1, 3, 1, 1, 3, 15, 1, 21, 3, 3, 1, 9, 1, 45, 3, 3, 15, 33, 1, 9, 21, 1, 3, 105, 3, 15, 1, 15, 9, 9, 1, 171, 45, 21, 3, 105, 3, 231, 15, 3, 33, 69, 1, 9, 9, 9, 21, 351, 1, 45, 3, 45, 105, 435, 3, 465, 15, 3, 1, 63, 15, 561, 9, 33, 9, 315, 1, 333, 171, 9, 45, 45, 21, 195, 3, 1, 105, 861, 3, 27, 231, 105, 15, 495, 3, 63, 33, 15, 69
Offset: 1

Views

Author

Antti Karttunen, Jul 09 2020

Keywords

Comments

For all i, j: A324400(i) = A324400(j) => a(i) = a(j) => A336118(i) = A336118(j).

Crossrefs

Programs

  • PARI
    A000265(n) = (n>>valuation(n,2));
    A335915(n) = { my(f=factor(n)); prod(k=1,#f~,if(2==f[k,1],1,(A000265(f[k,1]-1)*A000265(f[k,1]+1))^f[k,2])); };

Formula

Completely multiplicative with a(2) = 1, and for odd primes p, a(p) = A000265(p-1)*A000265(p+1).
For all n >= 1, A335904(a(n)) = A336118(n).
For all n >= 0, a(2^n) = a(3^n) = 1, a(5^n) = a(7^n) = 3^n.
a(n) = A336466(n) * A336467(n). - Antti Karttunen, Jan 31 2021