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!)
A119731 f-Pascal's triangle where f(n) = n^3 = A000578(n). 2
1, 1, 1, 1, 2, 1, 1, 9, 9, 1, 1, 730, 1458, 730, 1, 1, 389017001, 3488380912, 3488380912, 389017001, 1, 1, 58871587162270593034051002, 42508286068210633669596761529, 84898828962096726153125421056, 42508286068210633669596761529, 58871587162270593034051002, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
T(n,k) = T(n-1,k-1)^3 + T(n-1,k)^3 ; T(0,0) = 1 ; T(n,k) = 0 if k<0 or if k>n.
EXAMPLE
Triangle begins;
1;
1, 1;
1, 2, 1;
1, 9, 9, 1;
1, 730, 1458, 730, 1;
1, 389017001, 3488380912, 3488380912, 389017001, 1;
MATHEMATICA
T[n_, k_]:= T[n, k]= If[k<0 || k>n, 0, If[k==0, 1, T[n-1, k]^3 + T[n-1, k-1]^3]];
Table[T[n, k], {n, 0, 7}, {k, 0, n}]//Flatten (* G. C. Greubel, Jul 19 2021 *)
PROG
(Sage)
@CachedFunction
def T(n, k):
if (k<0 or k>n): return 0
elif (k==0): return 1
else: return T(n-1, k)^3 + T(n-1, k-1)^3
flatten([[T(n, k) for k in (0..n)] for n in (0..7)]) # G. C. Greubel, Jul 19 2021
CROSSREFS
Sequence in context: A108558 A128434 A176417 * A368928 A283321 A155718
KEYWORD
nonn,tabl
AUTHOR
Philippe Deléham, Jun 14 2006
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)