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!)
A015006 q-factorial numbers for q=7. 11
1, 1, 8, 456, 182400, 510902400, 10017774259200, 1375009641495014400, 1321109263548409835520000, 8885253784030448738183147520000, 418310711031156574478261944188764160000, 137856159231156714984163673320892478249861120000 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Product_{k=1..n} (7^k-1)/(7-1).
a(0) = 1, a(n) = (7^n - 1)*a(n-1)/6. - Vincenzo Librandi, Oct 25 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==((7^n - 1) * a[n-1])/6}, a, {n, 15}] (* Vincenzo Librandi, Oct 25 2012 *)
Table[QFactorial[n, 7], {n, 15}] (* Bruno Berselli, Aug 14 2013 *)
PROG
(Magma) [n le 1 select 1 else (7^n-1)*Self(n-1)/6: n in [1..15]]; // Vincenzo Librandi, Oct 25 2012
CROSSREFS
Column q=7 of A069777.
Sequence in context: A187049 A367707 A221157 * A279383 A054326 A203526
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 April 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)