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.

A047328 Numbers that are congruent to {0, 3, 5, 6} mod 7.

Original entry on oeis.org

0, 3, 5, 6, 7, 10, 12, 13, 14, 17, 19, 20, 21, 24, 26, 27, 28, 31, 33, 34, 35, 38, 40, 41, 42, 45, 47, 48, 49, 52, 54, 55, 56, 59, 61, 62, 63, 66, 68, 69, 70, 73, 75, 76, 77, 80, 82, 83, 84, 87, 89, 90, 91, 94, 96, 97, 98, 101, 103, 104, 105, 108, 110, 111
Offset: 1

Views

Author

Keywords

Comments

Indices of the odd numbers in the Padovan sequence (A000931). - Francesco Daddi, Jul 31 2011

Crossrefs

Programs

Formula

G.f.: x^2*(3+2x+x^2+x^3)/((1-x)^2*(1+x)*(1+x^2)). a(n) = A028762(n-2), 2R. J. Mathar, Oct 18 2008
a(n) = (1/8)*(14*n-5-(2-(-1)^n)*(1+2*(-1)^floor(n/2))). - Bruno Berselli, Aug 01 2011
From Wesley Ivan Hurt, May 31 2016: (Start)
a(n) = a(n-1) + a(n-4) - a(n-5) for n>5.
a(n) = (14*n-7+i^(2*n)-(1+3*i)*i^(-n)-(1-3*i)*i^n)/8 where i=sqrt(-1).
a(2k) = A047280(k), a(2k-1) = A047382(k). (End)
E.g.f.: (4 - 3*sin(x) - cos(x) + (7*x - 4)*sinh(x) + (7*x - 3)*cosh(x))/4. - Ilya Gutkovskiy, May 31 2016

A010410 Squares mod 49.

Original entry on oeis.org

0, 1, 2, 4, 8, 9, 11, 15, 16, 18, 22, 23, 25, 29, 30, 32, 36, 37, 39, 43, 44, 46
Offset: 1

Views

Author

Keywords

Crossrefs

Row 49 of A096008.

Programs

  • Mathematica
    Union[PowerMod[Range[49], 2, 49]] (* Alonso del Arte, Jan 07 2020 *)
  • Sage
    [quadratic_residues(49)] # Zerinvary Lajos, May 24 2009
    
  • Scala
    (1 to 49).map(n => n * n % 49).toSet.toSeq.sorted // Alonso del Arte, Jan 07 2020

Formula

a(n) = a(n-1) + a(n-3) - a(n-4) for 5 < n <= 22. - Chai Wah Wu, Jan 30 2018
Showing 1-2 of 2 results.