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!)
A114283 Sequence array for binomial transform of Jacobsthal numbers A001045(n+1). 3
1, 2, 1, 6, 2, 1, 18, 6, 2, 1, 54, 18, 6, 2, 1, 162, 54, 18, 6, 2, 1, 486, 162, 54, 18, 6, 2, 1, 1458, 486, 162, 54, 18, 6, 2, 1, 4374, 1458, 486, 162, 54, 18, 6, 2, 1, 13122, 4374, 1458, 486, 162, 54, 18, 6, 2, 1, 39366, 13122, 4374, 1458, 486, 162, 54, 18, 6, 2, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Sequence array for A025192. Row sums are 3^n, A000244. Diagonal sums are A015518(n+1). Inverse is A114284.
LINKS
FORMULA
Riordan array ((1-x)/(1-3x), x).
EXAMPLE
Triangle begins
1;
2,1;
6,2,1;
18,6,2,1;
54,18,6,2,1;
162,54,18,6,2,1;
PROG
(Haskell)
a114283 n k = a114283_tabl !! n !! k
a114283_row n = a114283_tabl !! n
a114283_tabl = iterate
(\row -> (sum $ zipWith (+) row $ reverse row) : row) [1]
-- Reinhard Zumkeller, Nov 27 2012
CROSSREFS
Sequence in context: A103881 A101024 A124730 * A106187 A110135 A114423
KEYWORD
easy,nonn,tabl
AUTHOR
Paul Barry, Nov 20 2005
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 16 14:02 EDT 2024. Contains 371735 sequences. (Running on oeis4.)