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”).

A015025
q-factorial numbers for q=-10.
1
1, -9, -819, 744471, 6767985861, -615270826637649, -559337171058846967059, 5084883322413411422459366631, 462262120681663158624798004859942421, -420238291486760860506028808179511473194550689
OFFSET
1,2
LINKS
FORMULA
Prod_{k=1}^{n} (q^k - 1) / (q - 1).
a(1) = 1, a(n) = ((-10)^n - 1)*a(n-1)/(-11). - Vincenzo Librandi, Oct 26 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==(((-10)^n - 1) * a[n-1])/(-11)}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)
PROG
(Magma) [n le 1 select 1 else ((-10)^n - 1)*Self(n-1)/(-11): n in [1..13]]; // Vincenzo Librandi, Oct 26 2012
CROSSREFS
Sequence in context: A332179 A196981 A197166 * A225169 A287034 A027878
KEYWORD
sign,easy
STATUS
approved