login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A203588
a(n) = v(n+1)/v(n), where v=A203587.
2
7, 399, 62049, 18796113, 9385475463, 6989994912159, 7264350232509825, 10045045412133360993, 17833797760578200512839, 39538255667229582221666799, 107060230015204789813170342753, 347683557620810765411565611000625
OFFSET
1,1
COMMENTS
See A093883 for a discussion and guide to related sequences.
MATHEMATICA
f[j_] := 2 j - 1; z = 12;
v[n_] := Product[Product[f[j]^2 - f[j] f[k] + f[k]^2,
{j, 1, k - 1}], {k, 2, n}]
Table[v[n], {n, 1, z}] (* A203587 *)
Table[v[n + 1]/v[n], {n, 1, z}] (* A203588 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jan 04 2012
EXTENSIONS
Definition corrected by Georg Fischer, Nov 26 2021
STATUS
approved