login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A158559
a(n) = 225*n^2 - 15.
2
210, 885, 2010, 3585, 5610, 8085, 11010, 14385, 18210, 22485, 27210, 32385, 38010, 44085, 50610, 57585, 65010, 72885, 81210, 89985, 99210, 108885, 119010, 129585, 140610, 152085, 164010, 176385, 189210, 202485, 216210, 230385, 245010, 260085, 275610, 291585, 308010
OFFSET
1,1
COMMENTS
The identity (30*n^2 - 1)^2 - (225*n^2 - 15) * (2*n)^2 = 1 can be written as A158560(n)^2 - a(n) * A005843(n)^2 = 1.
FORMULA
G.f.: 15*x*(-14 - 17*x + x^2)/(x-1)^3.
a(n) = 3*a(n-1) - 3*a(n-2) + a(n-3).
From Amiram Eldar, Mar 09 2023: (Start)
Sum_{n>=1} 1/a(n) = (1 - cot(Pi/sqrt(15))*Pi/sqrt(15))/30.
Sum_{n>=1} (-1)^(n+1)/a(n) = (cosec(Pi/sqrt(15))*Pi/sqrt(15) - 1)/30. (End)
MATHEMATICA
15(15Range[40]^2-1) (* or *) LinearRecurrence[{3, -3, 1}, {210, 885, 2010}, 40] (* Harvey P. Dale, Jan 24 2012 *)
PROG
(Magma) I:=[210, 885, 2010]; [n le 3 select I[n] else 3*Self(n-1)-3*Self(n-2)+1*Self(n-3): n in [1..50]]; // Vincenzo Librandi, Feb 14 2012
(PARI) for(n=1, 40, print1(225*n^2 - 15", ")); \\ Vincenzo Librandi, Feb 05 2012
CROSSREFS
Sequence in context: A118279 A163263 A009127 * A235248 A235241 A046302
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 21 2009
EXTENSIONS
Comment rewritten by R. J. Mathar, Oct 16 2009
STATUS
approved