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!)
A133821 Triangle whose rows are sequences of increasing fourth powers: 1; 1,16; 1,16,81; ... . 3
1, 1, 16, 1, 16, 81, 1, 16, 81, 256, 1, 16, 81, 256, 625, 1, 16, 81, 256, 625, 1296, 1, 16, 81, 256, 625, 1296, 2401, 1, 16, 81, 256, 625, 1296, 2401, 4096, 1, 16, 81, 256, 625, 1296, 2401, 4096, 6561, 1, 16, 81, 256, 625, 1296, 2401, 4096, 6561, 10000 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Reading the triangle by rows produces the sequence 1,1,16,1,16,81,1,16,81,256,..., analogous to A002260.
LINKS
FORMULA
O.g.f.: (1+11qx+11q^2x^2+q^3x^3)/((1-x)(1-qx)^5) = 1 + x(1 + 16q) + x^2(1 + 16q + 81q^2) + ... . Cf. 4th row of A008292.
EXAMPLE
Triangle starts
1;
1, 16;
1, 16; 81;
1, 16, 81, 256;
1, 16, 81, 256, 625;
MATHEMATICA
Module[{nn=10, fp}, fp=Range[(nn(nn+1))/2]^4; Table[TakeList[fp, {n}], {n, nn}]]//Flatten (* Requires Mathematica version 11 or later *) (* Harvey P. Dale, Mar 29 2020 *)
PROG
(Haskell)
a133821 n k = a133821_tabl !! (n-1) !! (k-1)
a133821_row n = a133821_tabl !! (n-1)
a133821_tabl = map (`take` (tail a000583_list)) [1..]
-- Reinhard Zumkeller, Nov 11 2012
CROSSREFS
Cf. A000538 (row sums), A002260, A133819, A133820, A133824.
Sequence in context: A070539 A301909 A070583 * A002651 A097522 A302153
KEYWORD
easy,nonn,tabl
AUTHOR
Peter Bala, Sep 25 2007
EXTENSIONS
Offset changed by Reinhard Zumkeller, Nov 11 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 June 4 14:25 EDT 2024. Contains 373099 sequences. (Running on oeis4.)