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”).

A157821
8984250n + 330.
3
8984580, 17968830, 26953080, 35937330, 44921580, 53905830, 62890080, 71874330, 80858580, 89842830, 98827080, 107811330, 116795580, 125779830, 134764080, 143748330, 152732580, 161716830, 170701080, 179685330, 188669580, 197653830
OFFSET
1,1
COMMENTS
The identity (1482401250*n^2+108900*n+1)^2-(27225*n^2+2*n)*(8984250*n+330)^2=1 can be written as A157822(n)^2-A157820(n)*a(n)^2=1.
FORMULA
a(n) = 2*a(n-1)-a(n-2).
G.f.: x*(8984580-330x)/(1-x)^2.
MATHEMATICA
LinearRecurrence[{2, -1}, {8984580, 17968830}, 30]
PROG
(Magma) I:=[8984580, 17968830]; [n le 2 select I[n] else 2*Self(n-1)-Self(n-2): n in [1..30]];
(PARI) a(n) = 8984250*n + 330.
CROSSREFS
Sequence in context: A234192 A162021 A157815 * A106787 A105012 A186139
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Mar 07 2009
STATUS
approved