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”).

A206295
(1/6)*A007188(n).
2
1, 15, 7875, 11142140625, 467812950752090302734375, 202822649430450649753225796950422853099588897705078125
OFFSET
1,2
COMMENTS
For n>1, a(n) is divisible by the product of the first n odd primes.
MATHEMATICA
c[n_] := CoefficientList[(1 + x)^n, x]
f[n_] := Product[Prime[k]^c[n][[k]],
{k, 1, Length[c[n]]}]
t=Table[f[n], {n, 1, 7}] (* A007188 *)
t/6 (* A206295 *)
CROSSREFS
Cf. A007188.
Sequence in context: A271402 A205304 A334835 * A074488 A059950 A198979
KEYWORD
nonn
AUTHOR
Clark Kimberling, Feb 05 2012
STATUS
approved