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!)
A269955 Triangle read by rows, T(n, k) = S(k, n) with S(n, n) = 1, S(0, n) = 0 and otherwise S(k,n) = Sum_{i=1..n-k+1} k^i*S(k-1, n-i), for n>=0 and 0<=k<=n. 1
1, 0, 1, 0, 1, 1, 0, 1, 6, 1, 0, 1, 14, 27, 1, 0, 1, 30, 123, 124, 1, 0, 1, 62, 459, 988, 645, 1, 0, 1, 126, 1563, 5788, 8165, 3906, 1, 0, 1, 254, 5067, 29404, 69765, 72426, 27391, 1, 0, 1, 510, 15963, 137884, 495845, 853146, 698719, 219192, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,9
LINKS
EXAMPLE
1,
0, 1,
0, 1, 1,
0, 1, 6, 1,
0, 1, 14, 27, 1,
0, 1, 30, 123, 124, 1,
0, 1, 62, 459, 988, 645, 1,
0, 1, 126, 1563, 5788, 8165, 3906, 1,
0, 1, 254, 5067, 29404, 69765, 72426, 27391, 1.
PROG
(Sage)
@cached_function
def T(k, n):
if k==n: return 1
if k==0: return 0
return sum(k^i*T(k-1, n-i) for i in (1..n-k+1))
A269955 = lambda n, k: T(k, n)
for n in (0..10): print([A269955(n, k) for k in (0..n)])
CROSSREFS
Sequence in context: A318458 A267479 A285824 * A198754 A243317 A021625
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Mar 12 2016
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)