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-2 of 2 results.

A363885 Number of divisors of 7*n-3 of form 7*k+2.

Original entry on oeis.org

1, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 2, 0, 2, 0, 2, 0, 4, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 2, 0, 3, 0, 4, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 2, 0, 4, 0, 2, 0, 4, 0, 2, 0, 2, 0, 2, 0, 2, 2, 2, 0, 4, 0, 2, 0, 2, 0, 4, 1, 2, 0, 2, 0, 2, 0, 2, 2, 4, 0, 2, 0, 2, 0, 2, 0, 4, 0, 2, 0, 2, 0, 4, 0
Offset: 1

Views

Author

Seiichi Manyama, Jun 26 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[7*n - 3, 1 &, Mod[#, 7] == 2 &]; Array[a, 100] (* Amiram Eldar, Jun 26 2023 *)
  • PARI
    a(n) = sumdiv(7*n-3, d, d%7==2);

Formula

a(n) = A363795(7*n-3).
G.f.: Sum_{k>0} x^(2*k-1)/(1 - x^(7*k-5)).

A363886 Number of divisors of 7*n-3 of form 7*k+5.

Original entry on oeis.org

0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 2, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0, 2, 0, 0, 1, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 2, 2, 0, 0, 1, 0, 2, 0
Offset: 1

Views

Author

Seiichi Manyama, Jun 26 2023

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := DivisorSum[7*n - 3, 1 &, Mod[#, 7] == 5 &]; Array[a, 100] (* Amiram Eldar, Jun 26 2023 *)
  • PARI
    a(n) = sumdiv(7*n-3, d, d%7==5);

Formula

a(n) = A363807(7*n-3).
G.f.: Sum_{k>0} x^(5*k-1)/(1 - x^(7*k-2)).
Showing 1-2 of 2 results.