login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

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