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!)
A155105 Numbers appearing the third column of A155103. 2
1, 4, 28, 364, 9100, 445900, 43252300 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MAPLE
A155102 := proc(n, k) if n = k then 1 ; elif n =2*k then -k-1 ; else 0; end if; end proc:
A155103 := proc(amx) a := array(1..amx, 1..amx) ; a[1, 1] := 1/A155102(1, 1) ;
for r from 1 to amx do
for c from 1 to r-1 do a[c, r] := 0 ; end do:
a[r, r] := 1/A155102(r, r) ;
for c from r-1 to 1 by -1 do a[r, c] := -add(a[cp, c]*A155102(r, cp), cp=c..r-1)/A155102(r, r) ;
if c = 3 and a[r, c] <> 0 then print( a[r, c]) ; end if;
end do:
end do:
return ;
end proc:
A155103(290) ; # R. J. Mathar, Dec 07 2010
CROSSREFS
Sequence in context: A217903 A339283 A095288 * A132685 A180966 A203032
KEYWORD
nonn,more
AUTHOR
Mats Granvik, Jan 20 2009
EXTENSIONS
Two more terms from R. J. Mathar, Dec 07 2010
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 28 12:12 EDT 2024. Contains 373786 sequences. (Running on oeis4.)