The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A081555 a(n) = 6*a(n-1) - a(n-2) - 4, a(0)=3, a(1)=7. 3
3, 7, 35, 199, 1155, 6727, 39203, 228487, 1331715, 7761799, 45239075, 263672647, 1536796803, 8957108167, 52205852195, 304278004999, 1773462177795, 10336495061767, 60245508192803, 351136554095047, 2046573816377475, 11928306344169799, 69523264248641315 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
2*(a(2*n+1) + 1) is a perfect square.
LINKS
FORMULA
a(n) = A051927(2n).
a(n) = A003499(n) + 1.
a(2n) + 1 = A003499(n)^2.
a(n) = (3 + 2*sqrt(2))^n + (3 - 2*sqrt(2))^n + 1.
G.f.: (3-14*x+7*x^2)/((1-x)*(1-6*x+x^2)).
MAPLE
seq(coeff(series((3-14*x+7*x^2)/((1-x)*(1-6*x+x^2)), x, n+1), x, n), n = 0 ..30); # G. C. Greubel, Aug 13 2019
MATHEMATICA
a[n_]:= a[n] = 6*a[n-1] -a[n-2] -4; a[0] = 3; a[1] = 7; Table[a[n], {n, 0, 25}]
LinearRecurrence[{7, -7, 1}, {3, 7, 35}, 30] (* G. C. Greubel, Aug 13 2019 *)
PROG
(PARI) a(n)=1+2*real((3+quadgen(32))^n)
(PARI) a(n)=1+2*subst(poltchebi(abs(n)), x, 3)
(PARI) a(n)=if(n<0, a(-n), 1+polsym(1-6*x+x^2, n)[n+1])
(Magma) R<x>:=PowerSeriesRing(Integers(), 30); Coefficients(R!( (3-14*x+7*x^2)/((1-x)*(1-6*x+x^2)) )); // G. C. Greubel, Aug 13 2019
(Sage)
def A081555_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P((3-14*x+7*x^2)/((1-x)*(1-6*x+x^2))).list()
A081555_list(30) # G. C. Greubel, Aug 13 2019
(GAP) a:=[3, 7];; for n in [3..30] do a[n]:=6*a[n-1]-a[n-2]-4; od; a; # G. C. Greubel, Aug 13 2019
CROSSREFS
Sequence in context: A215575 A266049 A132102 * A301341 A063042 A108505
KEYWORD
easy,nonn
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Mar 24 2003
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 May 14 03:35 EDT 2024. Contains 372528 sequences. (Running on oeis4.)