login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A015028
q-factorial numbers for q=-13.
1
1, -12, -1884, 3843360, 101929750560, -35142523960072320, -157510092662430660915840, 9177558663913662855639573043200, 6951672507594336724476921764731548211200
OFFSET
1,2
FORMULA
Prod_{k=1}^{n} (q^k - 1) / (q - 1).
a(1) = 1, a(n) = ((-13)^n - 1)*a(n-1)/(-14). - Vincenzo Librandi, Oct 26 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==(((-13)^n - 1) a[n-1])/(-14)}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)
PROG
(Magma) [n le 1 select 1 else ((-13)^n - 1)*Self(n-1)/(-14): n in [1..13]]; // Vincenzo Librandi, Oct 26 2012
CROSSREFS
Sequence in context: A229752 A104009 A261946 * A167745 A326601 A265216
KEYWORD
sign,easy
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 21 17:32 EDT 2024. Contains 376087 sequences. (Running on oeis4.)