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.

A047374 Numbers that are congruent to {4, 5} mod 7.

Original entry on oeis.org

4, 5, 11, 12, 18, 19, 25, 26, 32, 33, 39, 40, 46, 47, 53, 54, 60, 61, 67, 68, 74, 75, 81, 82, 88, 89, 95, 96, 102, 103, 109, 110, 116, 117, 123, 124, 130, 131, 137, 138, 144, 145, 151, 152, 158, 159, 165, 166, 172
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Select[Range[200], MemberQ[{4, 5}, Mod[#, 7]] &] (* Amiram Eldar, May 07 2021 *)
  • PARI
    a(n) = (14*n - 5*(-1)^n - 3)/4 \\ David Lovler, Sep 15 2022

Formula

G.f.: x*(4 + x + 2*x^2)/((1 + x)*(x - 1)^2). - R. J. Mathar, Dec 04 2011
a(n) = -(5/4)*(-1)^n + 7*(n-1)/2 + 11/4. - Viet Quoc Le Tran, Jun 14 2014
a(n) = (14*n - 5*(-1)^n - 3)/4. - David Lovler, Sep 15 2022
E.g.f.: 2 + ((14*x - 3)*exp(x) - 5*exp(-x))/4. - David Lovler, Sep 15 2022