The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A015008 q-factorial numbers for q=9. 11
1, 1, 10, 910, 746200, 5507702200, 365876657146000, 218747042884536166000, 1177042838234827583459440000, 57001313848230245122464621625840000, 24843911488189148287648216529610193612000000, 97453533413342456299179976631323547842824103012000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Product_{k=1..n} (9^k - 1) / (9 - 1).
a(0) = 1, a(n) = (9^n - 1)*a(n-1)/8. - Vincenzo Librandi, Oct 26 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==((9^n - 1) * a[n-1])/8}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)
Table[QFactorial[n, 9], {n, 15}] (* Bruno Berselli, Aug 14 2013 *)
PROG
(Magma) [n le 1 select 1 else (9^n - 1)*Self(n-1)/8: n in [1..15]]; // Vincenzo Librandi, Oct 26 2012
CROSSREFS
Column q=9 of A069777.
Sequence in context: A233125 A297471 A024137 * A194791 A292669 A159869
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Sep 08 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 May 14 21:33 EDT 2024. Contains 372533 sequences. (Running on oeis4.)