OFFSET
0,4
COMMENTS
Most of the time a(2n-1)=2n-1, but a(2n-1)!=2n-1 for 2n-1 = 13,17,23,25,37,41,43,47,49,53,55,57,59,61,63,...
Most of the time a(2n)=n, but a(2n)!=n for 2n = 16,24,26,32,40,42,44,50,54,56,58,64,84,86,96,100,102,104,...
EXAMPLE
a(3) = 108/36 = 3.
MATHEMATICA
f[n_] := Product[k^k, {k, 1, n}]/ Denominator[Sum[i(i + 1)/2/Product[i!/j!, {j, 0, i - 1}], {i, n}]]; Table[ f[n], {n, 0, 61}] (* Robert G. Wilson v, Apr 18 2005 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jess E. Boling (tdbpeekitup(AT)yahoo.com), Apr 17 2005
EXTENSIONS
Edited by Robert G. Wilson v, Apr 18 2005
STATUS
approved