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!)
A243758 a(n) = Product_{i=1..n} A234959(i). 3
1, 1, 1, 1, 1, 1, 6, 6, 6, 6, 6, 6, 36, 36, 36, 36, 36, 36, 216, 216, 216, 216, 216, 216, 1296, 1296, 1296, 1296, 1296, 1296, 7776, 7776, 7776, 7776, 7776, 7776, 279936, 279936, 279936, 279936, 279936, 279936, 1679616, 1679616, 1679616, 1679616, 1679616, 1679616, 10077696 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,7
COMMENTS
This is the generalized factorial for A234959.
a(0) = 1 as it represents the empty product.
LINKS
Tyler Ball, Tom Edgar, and Daniel Juda, Dominance Orders, Generalized Binomial Coefficients, and Kummer's Theorem, Mathematics Magazine, Vol. 87, No. 2, April 2014, pp. 135-143.
FORMULA
a(n) = Product_{i=1..n} A234959(i).
a(n) = 6^(A054895(n)).
MATHEMATICA
Table[Product[6^IntegerExponent[k, 6], {k, 1, n}], {n, 0, 20}] (* G. C. Greubel, Dec 24 2016 *)
PROG
(Sage)
S=[0]+[6^valuation(i, 6) for i in [1..100]]
[prod(S[1:i+1]) for i in [0..99]]
(Haskell)
a243758 n = a243758_list !! n
a243758_list = scanl (*) 1 a234959_list
-- Reinhard Zumkeller, Feb 09 2015
(PARI) valp(n, p)=my(s); while(n\=p, s+=n); s
a(n)=6^valp(n, 6) \\ Charles R Greathouse IV, Oct 03 2016
CROSSREFS
Sequence in context: A103337 A241155 A245399 * A318355 A318237 A201572
KEYWORD
nonn,easy
AUTHOR
Tom Edgar, Jun 10 2014
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 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)