login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(n) = 34*a(n-1) - a(n-2); a(0)=0, a(1)=6.
5

%I #38 Jan 01 2024 11:17:53

%S 0,6,204,6930,235416,7997214,271669860,9228778026,313506783024,

%T 10650001844790,361786555939836,12290092900109634,417501372047787720,

%U 14182756556724672846,481796221556591089044,16366888776367372354650

%N a(n) = 34*a(n-1) - a(n-2); a(0)=0, a(1)=6.

%C Sequence refers to inradius of primitive Pythagorean triangle with consecutive legs, even followed by odd. It has semiperimeter A046176(n+1) and area a(n)*A046176(n+1).

%H Indranil Ghosh, <a href="/A082405/b082405.txt">Table of n, a(n) for n = 0..652</a>

%H Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a>

%H Giovanni Lucca, <a href="https://ijgeometry.com/product/giovanni-lucca-circle-chains-inside-the-arbelos-and-integer-sequences/">Circle chains inside the arbelos and integer sequences</a>, Int'l J. Geom. (2023) Vol. 12, No. 1, 71-82.

%H Serge Perrine, <a href="http://article.scirea.org/pdf/11150.pdf">About the diophantine equation z^2 = 32y^2 - 16</a>, SCIREA Journal of Mathematics (2019) Vol. 4, Issue 5, 126-139.

%H <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (34, -1).

%F For n > 1, a(n)/2 = A001652(2*n-1) - Sum_{k=0..n-1} A001333(4*k); e.g., 6930/2 = 4059 - (17+577). - _Charlie Marion_, Jul 31 2003

%F a(n) = A001109(2n).

%F G.f.: 6*x/(1 - 34*x + x^2). - _Philippe Deléham_, Nov 18 2008

%F a(n) = 6*A029547(n-1). - _R. J. Mathar_, Jun 07 2016

%t a[0] = 1; a[1] = 6; a[n_] := 34 a[n-1] - a[n-2]; Table[a[n], {n,0,15}] (* or *) LinearRecurrence[{34,-1}, {1,6}, 16] (* _Indranil Ghosh_, Feb 18 2017 *)

%Y Cf. A046176.

%K nonn,easy

%O 0,2

%A _Lekraj Beedassy_, Apr 23 2003

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 24 07:53 EDT 2024. Contains 376188 sequences. (Running on oeis4.)