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.

A047379 Numbers that are congruent to {0, 2, 4, 5} mod 7.

Original entry on oeis.org

0, 2, 4, 5, 7, 9, 11, 12, 14, 16, 18, 19, 21, 23, 25, 26, 28, 30, 32, 33, 35, 37, 39, 40, 42, 44, 46, 47, 49, 51, 53, 54, 56, 58, 60, 61, 63, 65, 67, 68, 70, 72, 74, 75, 77, 79, 81, 82, 84, 86, 88, 89, 91, 93, 95, 96
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

Formula

a(n) = floor(floor((7n + 2)/2)/2).
a(n) = floor((7n-5)/4). - Gary Detlefs, Mar 07 2010
G.f.: x^2*(2+2*x+x^2+2*x^3) / ( (1+x)*(x^2+1)*(x-1)^2 ). - R. J. Mathar, Dec 04 2011
From Wesley Ivan Hurt, Dec 03 2014: (Start)
a(n) = a(n-1) + a(n-4) - a(n-5), n>5;
a(n) = (14*n-13-(-1)^n+2*i^n*(-1)^((3+(-1)^n)/4))/8, where i = sqrt(-1);
a(n) = A047215(n-1) - A057353(n-1). (End)