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!)
A015009 q-factorial numbers for q=10. 11
1, 1, 11, 1221, 1356531, 15072415941, 1674711207620451, 1860790044610366931061, 20675444733360738721748118771, 2297271634742810443154153338805764581, 2552524038347870310755413660544832496799359491, 28361378203581611893021499527080870668821235178133404501 (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=10.
a(0) = 1, a(n) = (10^n - 1)*a(n-1)/9. - Vincenzo Librandi, Oct 26 2012
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==((10^n-1) * a[n-1])/9}, a, {n, 15}] (* Vincenzo Librandi, Oct 26 2012 *)
Table[QFactorial[n, 10], {n, 15}] (* Bruno Berselli, Aug 14 2013 *)
PROG
(Magma) [n le 1 select 1 else (10^n-1)*Self(n-1)/9: n in [1..15]]; // Vincenzo Librandi, Oct 26 2012
CROSSREFS
Column q=10 of A069777.
Sequence in context: A261138 A259937 A078269 * A068326 A001323 A266368
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 March 29 05:43 EDT 2024. Contains 371264 sequences. (Running on oeis4.)