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.

Previous Showing 11-11 of 11 results.

A264754 Expansion of (1 + 2*x - 2*x^3 + x^4)/((1 - x)^3*(1 + x)^2).

Original entry on oeis.org

1, 3, 5, 7, 11, 13, 19, 21, 29, 31, 41, 43, 55, 57, 71, 73, 89, 91, 109, 111, 131, 133, 155, 157, 181, 183, 209, 211, 239, 241, 271, 273, 305, 307, 341, 343, 379, 381, 419, 421, 461, 463, 505, 507, 551, 553, 599, 601, 649, 651, 701, 703, 755, 757, 811, 813, 869, 871, 929, 931, 991, 993, 1055, 1057, 1121, 1123
Offset: 0

Views

Author

Ilya Gutkovskiy, Aug 27 2016

Keywords

Comments

Interleaving of A002061 and A028387.
All members are odd.
Primes in this sequence: 3, 5, 7, 11, 13, 19, 29, 31, 41, 43, 71, 73, 89, 109, 131, 157, 181, 211, 239, 241, 271, 307, 379, 419, 421, 461, 463, 599, 601, 701, 757, 811, 929, 991, ...

Crossrefs

Programs

  • Mathematica
    LinearRecurrence[{1, 2, -2, -1, 1}, {1, 3, 5, 7, 11}, 66]
    Table[(2 n (n + (-1)^n + 5) - 3 (-1)^n + 11)/8, {n, 0, 65}]
  • PARI
    Vec((1+2*x-2*x^3+x^4)/((1-x)^3*(1+x)^2) + O(x^99)) \\ Altug Alkan, Aug 27 2016

Formula

O.g.f.: (1 + 2*x - 2*x^3 + x^4)/((1 - x)^3*(1 + x)^2).
E.g.f.: ((-3 - 2*x)*exp(-x) + (11 + 12*x + 2*x^2)*exp(x))/8
a(n) = a(n-1) + 2*a(n-2) - 2*a(n-3) - a(n-4) + a(n-5) for n > 4.
a(n) = (2*n*(n + (-1)^n + 5) - 3*(-1)^n + 11)/8.
Previous Showing 11-11 of 11 results.