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!)
A085476 Periodic Pascal array, read by upward antidiagonals. 1
1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 4, 3, 1, 1, 1, 1, 5, 6, 1, 2, 1, 1, 1, 6, 10, 4, 1, 1, 1, 1, 1, 7, 15, 10, 1, 3, 1, 1, 1, 1, 8, 21, 20, 5, 1, 3, 2, 1, 1, 1, 9, 28, 35, 15, 1, 4, 1, 1, 1, 1, 1, 10, 36, 56, 35, 6, 1, 6, 1, 1, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,8
COMMENTS
G.f. of binomial transform of n-th row is given by 1/((1-x)^(n+1)-x^(n+1)).
LINKS
FORMULA
Square array T(n, k) = C(n, k mod (n+1)).
EXAMPLE
Rows begin:
n\k | 0 1 2 3 4 5
----+------------
0 | 1 1 1 1 1 1 ...
1 | 1 1 1 1 1 1 ...
2 | 1 2 1 1 2 1 ...
3 | 1 3 3 1 1 3 ...
4 | 1 4 6 4 1 1 ...
PROG
(Python)
from math import comb
def A085476(n, k): return(comb(n, k%(n+1))) # John Tyler Rascoe, Dec 01 2023
CROSSREFS
Sequence in context: A178239 A260534 A350103 * A124944 A094392 A111946
KEYWORD
easy,nonn,tabl
AUTHOR
Paul Barry, Jul 02 2003
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)