The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A209490 Table T(d,n), read by antidiagonals, gives the number of subsets of length n containing an arithmetic progression of length 3 with distance d. 3
1, 0, 3, 0, 0, 8, 0, 0, 4, 20, 0, 0, 0, 15, 47, 0, 0, 0, 0, 37, 107, 0, 0, 0, 0, 16, 87, 238, 0, 0, 0, 0, 0, 60, 200, 520, 0, 0, 0, 0, 0, 0, 169, 448, 1121, 0, 0, 0, 0, 0, 0, 64, 387, 992, 2391, 0, 0, 0, 0, 0, 0, 0, 240, 865, 2160, 5056 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
3,3
COMMENTS
Offset for n is 3, offset for d is 1, thus 1st entry is T(1,3).
LINKS
FORMULA
T(d,n) = 2^n - prod_{1=0 to d-1} Tri(floor((n + i)/d) + 2) where Tri(n) is the n-th tribonacci number.
EXAMPLE
Table begins:
1, 3, 8, 20, 47, 107, 238, 520 ...
0, 0, 4, 15, 37, 87, 200, 448 ...
0, 0, 0, 0, 16, 60, 169, 387 ...
0, 0, 0, 0, 0, 0, 64, 240 ...
0, 0, 0, 0, 0, 0, 0, 0 ...
0, 0, 0, 0, 0, 0, 0, 0 ...
0, 0, 0, 0, 0, 0, 0, 0 ...
0, 0, 0, 0, 0, 0, 0, 0 ...
0, 0, 0, 0, 0, 0, 0, 0 ...
0, 0, 0, 0, 0, 0, 0, 0 ...
..................................
For T(2,5) we count subsets of {1,...,5} containing {1,3,5}, the only d=2 AP possible here. There are 4 subsets containing {1,3,5} so T(2,5) = 4.
MATHEMATICA
T[0]=0; T[1] = 1; T[2] = 1; T[n_] := T[n - 1] + T[n - 2] + T[n - 3]; a[d_, n_] := 2^n - Product[T[Floor[(n + i)/d] + 2], {i, 0, d - 1}]; Table[a[i, j], {i, 1, 10}, {j, 3, 10}]; Flatten[Table[a[j - i + 1, i + 3], {j, 0, 10}, {i, 0, j}]]
CROSSREFS
Sequence in context: A227724 A218538 A243163 * A346879 A326397 A140577
KEYWORD
nonn,tabl
AUTHOR
David Nacin, Mar 09 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 22 06:48 EDT 2024. Contains 372743 sequences. (Running on oeis4.)