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!)
A079027 a(n) = det(M(n)) where M(n) is the n X n matrix defined by m(i,i)=6, m(i,j)=i/j. 2
6, 35, 200, 1125, 6250, 34375, 187500, 1015625, 5468750, 29296875, 156250000, 830078125, 4394531250, 23193359375, 122070312500, 640869140625, 3356933593750, 17547607421875, 91552734375000, 476837158203125, 2479553222656250, 12874603271484375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = (n+5)*5^(n-1).
a(n) = 10*a(n-1)-25*a(n-2). G.f.: -x*(25*x-6) / (5*x-1)^2. - Colin Barker, Jun 18 2013
From Amiram Eldar, Jan 18 2021: (Start)
Sum_{n>=1} 1/a(n) = 15625*log(5/4) - 41837/12.
Sum_{n>=1} (-1)^(n+1)/a(n) = 34187/12 - 15625*log(6/5). (End)
MAPLE
A079027:=n->(n + 5)*5^(n - 1); seq(A079027(n), n=1..50); # Wesley Ivan Hurt, Nov 30 2013
MATHEMATICA
Table[(n + 5)*5^(n - 1), {n, 50}] (* Wesley Ivan Hurt, Nov 30 2013 *)
LinearRecurrence[{10, -25}, {6, 35}, 30] (* Harvey P. Dale, Jun 14 2022 *)
PROG
(PARI) a(n) = matdet(matrix(n, n, i, j, if(i==j, 6, i/j))); \\ Michel Marcus, Nov 30 2013
CROSSREFS
Cf. A006234.
Sequence in context: A209179 A370036 A081105 * A289784 A161727 A121838
KEYWORD
nonn,easy,changed
AUTHOR
Benoit Cloitre, Feb 01 2003
EXTENSIONS
More terms from Michel Marcus, Nov 30 2013
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 March 29 02:23 EDT 2024. Contains 371264 sequences. (Running on oeis4.)