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

A028332
Distinct elements to the right of the central elements of the even-Pascal triangle A028326.
7
2, 6, 8, 20, 10, 30, 12, 70, 42, 14, 112, 56, 16, 252, 168, 72, 18, 420, 240, 90, 924, 660, 330, 110, 22, 1584, 990, 440, 132, 24, 3432, 2574, 1430, 572, 156, 26, 6006, 4004, 2002, 728, 182, 28, 12870, 10010, 2730, 910, 210, 22880, 16016, 8736, 3640
OFFSET
0,1
LINKS
MATHEMATICA
DeleteDuplicates[Table[2*Binomial[n+1, k+1 +Floor[(n+1)/2]], {n, 0, 30}, {k, 0, Floor[n/2]}]//Flatten] (* G. C. Greubel, Jul 14 2024 *)
PROG
(SageMath)
A028330=flatten([[2*binomial(n+1, k+1+((n+1)//2)) for k in range(1+(n//2))] for n in range(31)])
def a(seq): # order preserving
nd = [] # no duplicates
[nd.append(i) for i in seq if not nd.count(i) and i%2==0]
return nd
a(A028330) # A028332 # G. C. Greubel, Jul 14 2024
CROSSREFS
KEYWORD
nonn,easy
EXTENSIONS
More terms from Asher Auel
Duplicated 20 removed by Sean A. Irvine, Dec 29 2019
STATUS
approved