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!)
A203480 a(n) = v(n+1)/v(n), where v = A203479. 3
4, 80, 6336, 1901824, 2167925760, 9505110118400, 162323441859870720, 10902076148767162433536, 2898720791385603198124032000, 3064112360434477703904869089280000, 12909951234577776926559241120412860416000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = Product_{k=1..n} (2^k + 2^(n+1) - 2). - G. C. Greubel, Aug 28 2023
MATHEMATICA
(* First program *)
f[j_]:= 2^j - 1; z = 15;
v[n_]:= Product[Product[f[k] + f[j], {j, k-1}], {k, 2, n}]
Table[v[n], {n, z}] (* A203479 *)
Table[v[n+1]/v[n], {n, z-1}] (* A203480 *)
Table[v[n+1]/(4*v[n]), {n, z-1}] (* A203481 *)
(* Second program *)
Table[Product[2^(n+1) +2^k -2, {k, n}], {n, 20}] (* G. C. Greubel, Aug 28 2023 *)
PROG
(Magma) [(&*[2^j +2^(n+1) -2: j in [1..n]]): n in [1..20]]; // G. C. Greubel, Aug 28 2023
(SageMath) [product(2^j+2^(n+1)-2 for j in range(1, n+1)) for n in range(1, 21)] # G. C. Greubel, Aug 28 2023
CROSSREFS
Sequence in context: A012106 A156103 A204294 * A339854 A116189 A159063
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 02 2012
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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)