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.

A015020 q-factorial numbers for q=-7.

Original entry on oeis.org

1, 1, -6, -258, 77400, 162617400, -2391451484400, -246183190158589200, 177399606828279377520000, 894839274162813664365761520000, -31596243236160097777438406008857120000, -7809512095098558650122990001755435531352160000, 13511712475016607822799577492128185918816231362544000000
Offset: 0

Views

Author

Keywords

Crossrefs

Column k=7 of A384454.
Cf. A015006.

Programs

  • Magma
    [n le 1 select 1 else ((-7)^n - 1)*Self(n-1)/(-8): n in [1..13]]; // Vincenzo Librandi, Oct 26 2012
  • Mathematica
    RecurrenceTable[{a[1]==1, a[n]==(((-7)^n - 1) * a[n-1])/(-8)}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)

Formula

a(n) = Product_{k=1..n} ((-7)^k - 1) / (-7 - 1).
a(1) = 1, a(n) = ((-7)^n - 1)*a(n-1)/(-8). - Vincenzo Librandi, Oct 26 2012
a(n) ~ (-1)^floor(n/2) * c * 7^(n*(n+1)/2) / 8^n, where c = Product_{k>=1} (1 - 1/(-7)^k) = 1.1223882662358546529... . - Amiram Eldar, Aug 09 2025

Extensions

a(0)=1 prepended by Seiichi Manyama, May 30 2025