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!)
A015007 q-factorial numbers for q=8. 11
1, 1, 9, 657, 384345, 1799118945, 67375205371305, 20185139902805378865, 48378633136349277767794425, 927610024989668734297857360967425, 142287668466497494704440569679875994730825, 174605966461872393482359052970987514818406771638225 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = Product_{k=1..n} ((q^k - 1) / (q - 1)), with q=8.
a(0) = 1, a(n) = (8^n-1)*a(n-1)/7. - Vincenzo Librandi, Oct 26 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==((8^n - 1) * a[n-1])/7}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)
Table[QFactorial[n, 8], {n, 15}] (* Bruno Berselli, Aug 14 2013 *)
PROG
(Magma) [n le 1 select 1 else (8^n-1)*Self(n-1)/7: n in [1..15]]; // Vincenzo Librandi, Oct 26 2012
CROSSREFS
Column q=8 of A069777.
Sequence in context: A020548 A091062 A221133 * A054327 A209964 A287937
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 25 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)