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!)
A167823 Subsequence of A167709 whose indices are congruent to 2 mod 5, i.e., a(n) = A167709(5*n+2). 1
15, 5124, 1742145, 592324176, 201388477695, 68471490092124, 23280105242844465, 7915167311077025976, 2691133605660945987375, 914977510757410558681524, 311089662523913929005730785, 105769570280619978451389785376, 35961342805748268759543521297055 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n+2) = 340*a(n+1) - a(n).
a(n+1) = 170*a(n) + 39*sqrt(19*(a(n))^2 + 81).
G.f.: (15 + 24*z)/(1 - 340*z + z^2).
a(n) = (66*sqrt(19) + 285)/38*(170 + 39*sqrt(19))^n + (-66*sqrt(19) + 285)/38*(170 - 39*sqrt(19))^n.
EXAMPLE
a(0) = A167709(2) = 15, a(1) = A167709(7) = 5124.
MAPLE
w(0):=15:for n from 0 to 20 do w(n+1):=170*w(n)+39*sqrt(19*(w(n))^2+81) :od: seq(w(n), n=0..20); for n from 0 to 20 do u(n):=simplify((66*sqrt(19)+285)/38*(170+39*sqrt(19))^(n)+(-66*sqrt(19)+285)/38*(170-39*sqrt(19))^(n)):od:seq(u(n), n=0..20); taylor(((15+5124*z-15*340*z)/(1-340*z+z^2)), z=0, 21);
MATHEMATICA
LinearRecurrence[{340, -1}, {15, 5124}, 50] (* G. C. Greubel, Jun 27 2016 *)
RecurrenceTable[{a[1] == 15, a[2] == 5124, a[n] == 340 a[n-1] - a[n-2]}, a, {n, 15}] (* Vincenzo Librandi, Jun 28 2016 *)
PROG
(Magma) I:=[15, 5124]; [n le 2 select I[n] else 340*Self(n-1)-Self(n-2): n in [1..30]]; // Vincenzo Librandi, Jun 28 2016
CROSSREFS
Sequence in context: A206387 A198903 A249966 * A199099 A251820 A296177
KEYWORD
easy,nonn
AUTHOR
Richard Choulet, Nov 13 2009
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 April 19 11:14 EDT 2024. Contains 371791 sequences. (Running on oeis4.)