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

A051455
(Terms in A029623)/2.
0
1, 1, 4, 1, 1, 7, 13, 12, 1, 20, 25, 1, 10, 45, 24, 1, 1, 13, 50, 112, 161, 154, 98, 40, 1, 63, 162, 273, 315, 252, 138, 1, 16, 225, 435, 588, 567, 390, 60, 1, 660, 1023, 1155, 957, 1, 19, 111, 396, 1683, 2178, 2112, 825, 319, 84, 1, 130, 507, 3861, 4290, 1144, 403, 1
OFFSET
0,3
EXAMPLE
1;
1;
4,1;
1;
7,13,12,1;
20,25,1;
10,45,24,1;
1;
13,50,112,161,154,98,40,1;
63,162,273,315,252,138,1;
16,225,435,588,567,390,60,1;
660,1023,1155,957,1;
MAPLE
for n from 0 to 12 do
for k from 0 to n do
a := A029618(n, k) ;
if type(a, 'even') then
printf("%d, ", a/2) ;
end if;
end do:
printf("\n") ;
end do: # R. J. Mathar, Jul 08 2015
CROSSREFS
KEYWORD
nonn,easy,tabf
STATUS
approved