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

A249416
a(n) = core(Sum_{i=0,...,n} core(binomial(n,i))), where core(n) = A007913(n).
0
1, 2, 1, 2, 10, 2, 1, 2, 118, 19, 519, 2, 635, 370, 829, 1333, 8454, 17315, 3599, 15307, 423769, 852006, 495431, 2, 2425755, 2121070, 3192295, 1614598, 35685686, 10081687, 735961, 12902173, 216093318, 151123623, 5270424935, 39937013, 22884337, 7281379334
OFFSET
0,2
MATHEMATICA
a7913[n_]:=a7913[n]=Times@@(#[[1]]^Mod[#[[2]], 2])&[Transpose[FactorInteger[n]]];
Map[a7913[Total[Map[a7913, Binomial[#, Range[0, #]]]]]&, Range[0, 50]] (* Peter J. C. Moses, Oct 28 2014 *)
PROG
(PARI) a(n) = core(sum(i=0, n, core(binomial(n, i)))); \\ Michel Marcus, Nov 13 2014
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Oct 28 2014
EXTENSIONS
More terms from Peter J. C. Moses, Oct 28 2014
STATUS
approved