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

A105731
Odd numbers n such that A105658(n) != n.
3
13, 17, 23, 25, 37, 41, 43, 47, 49, 53, 55, 57, 59, 61, 63, 65, 67, 69, 71, 75, 77, 81, 83, 85, 97, 99, 103, 107, 111, 117, 121, 123, 125, 127, 129, 131, 137, 139, 143, 145, 149, 151, 153, 157, 159, 161, 163, 169, 173, 177, 179, 181, 183, 189, 191, 193, 195, 197
OFFSET
1,1
FORMULA
A105658(n) = Product_{i=1..n} i^i / denominator( sum_{j=1..n} j(j+1)/2 / product_{k=0..i-1} j!/k!) ).
MATHEMATICA
f[n_] := f[n] = Product[i^i, {i, n}]/Denominator[ Sum[j(j + 1)/2/(Product[j!/k!, {k, 0, j - 1}]), {j, n}]]; Select[ Range[1, 200, 2], f[ # ] != # &]
CROSSREFS
KEYWORD
nonn
AUTHOR
Jess E. Boling (tdbpeekitup(AT)yahoo.com) and Robert G. Wilson v, Apr 18 2005
STATUS
approved