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!)
A164855 Generalized Lucas-Pascal triangle: (101*100^n,1) 3
1, 101, 1, 10100, 102, 1, 1010000, 10202, 103, 1, 101000000, 1020202, 10305, 104, 1, 10100000000, 102020202, 1030507, 10409, 105, 1, 1010000000000, 10202020202, 103050709, 1040916, 10514, 106, 1, 101000000000000, 1020202020202 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
T(0,0)=1, T(n+1,0)=101*100^n, T(n,n)=1, T(n,k)=T(n-1,k-1)+T(n-1,k) for 0<k<n. - Philippe Deléham, Dec 27 2013
EXAMPLE
Triangle begins:
1
101,1
10100,102,1
1010000,10202,103,1
101000000,1020202,10305,104,1
10100000000,102020202,1030507,10409,105,1
1010000000000,10202020202,103050709,1040916,10514,106,1
101000000000000,1020202020202,10305070911,104091625,1051430,10620,107,1
MAPLE
A164855 := proc(n, k)
option remember;
if n=k then
1;
elif k>n or k<0 then
0;
elif k = 0 then
101*100^(n-1) ;
else
procname(n-1, k-1)+procname(n-1, k) ;
end if;
end proc:
seq(seq(A164855(n, k), k=0..n), n=0..12) ; # R. J. Mathar, Nov 03 2016
CROSSREFS
Sequence in context: A277917 A281103 A164866 * A284247 A256826 A036193
KEYWORD
nonn,tabl,easy
AUTHOR
Mark Dols, Aug 28 2009
EXTENSIONS
Initial 1 added by Philippe Deléham, Dec 27 2013
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 20 23:09 EDT 2024. Contains 372720 sequences. (Running on oeis4.)