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!)
A211312 Square array of Delannoy numbers D(i,j) mod 3 (i >= 0, j >= 0) read by antidiagonals. 5
1, 1, 1, 1, 0, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 1, 2, 2, 0, 2, 2, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 2, 2, 2, 0, 0, 2, 2, 2, 1, 1, 1, 1, 2, 2, 0, 2, 2, 1, 1, 1, 1, 0, 1, 2, 0, 2, 2, 0, 2, 1, 0, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
LINKS
Marko Razpet, A self-similarity structure generated by king's walk, Algebraic and topological methods in graph theory (Lake Bled, 1999). Discrete Math. 244 (2002), no. 1-3, 423--433. MR1844050 (2002k:05022)
FORMULA
a(n) = sum(binomial(k, j) * binomial(n-j, k), j=0..n-k) mod 3. - Johannes W. Meijer, Jul 19 2013
EXAMPLE
Written as a triangle:
1,
1, 1,
1, 0, 1,
1, 2, 2, 1,
1, 1, 1, 1, 1,
1, 0, 1, 1, 0, 1,
1, 2, 2, 0, 2, 2, 1,
1, 1, 1, 0, 0, 1, 1, 1,
1, 0, 1, 0, 0, 0, 1, 0, 1,
...
MAPLE
A211312 := proc(n, k): add(binomial(k, j) * binomial(n-j, k), j=0..n-k) mod 3 end: seq(seq(A211312(n, k), k=0..n), n=0..12); # Johannes W. Meijer, Jul 19 2013
MATHEMATICA
a[n_, k_] := Mod[Binomial[n, k]*Hypergeometric2F1[-k, k-n, -n, -1], 3]; Table[a[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* Jean-François Alcover, Jan 14 2014, after Johannes W. Meijer *)
CROSSREFS
Sequence in context: A131341 A124034 A332029 * A085978 A141044 A064284
KEYWORD
nonn,tabl
AUTHOR
N. J. A. Sloane, Apr 15 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 7 12:04 EDT 2024. Contains 372303 sequences. (Running on oeis4.)