[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A015023
q-factorial numbers for q=-9.
1
1, -8, -584, 383104, 2262229120, -120223904353280, -57502732780460764160, 247530403723531598578155520, 9589835030046843645163231485460480, -3343768718134086569119429099709242848051200
OFFSET
1,2
FORMULA
prod_{k=1}^{k=n} {(q^k - 1) / (q - 1)}
a(1) = 1, a(n) = (((-9)^n - 1) * a(n-1))/(-10). - Vincenzo Librandi, Oct 26 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==(((-9)^n - 1) * a[n-1])/(-10)}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)
PROG
(Magma) I:=[1]; [n le 1 select I[n] else (((-9)^n - 1) * Self(n-1))/(-10): n in [1..13]]; // Vincenzo Librandi, Oct 26 2012
CROSSREFS
Sequence in context: A326552 A303933 A188780 * A225168 A332158 A269508
KEYWORD
sign,easy
STATUS
approved