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!)
A010910 Pisot sequence E(4,27): a(n) = floor(a(n-1)^2/a(n-2)+1/2) for n>1, a(0)=4, a(1)=27. 1
4, 27, 182, 1227, 8272, 55767, 375962, 2534607, 17087452, 115197747, 776623742, 5235731187, 35297505832, 237963690927, 1604269674722, 10815436502967, 72913967391412, 491560986863307, 3313935758136902, 22341419483137947, 150618195689512192, 1015416271552762887 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
D. W. Boyd, Some integer sequences related to the Pisot sequences, Acta Arithmetica, 34 (1979), 295-305.
D. W. Boyd, Linear recurrence relations for some generalized Pisot sequences, Advances in Number Theory ( Kingston ON, 1991) 333-340, Oxford Sci. Publ., Oxford Univ. Press, New York, 1993.
S. B. Ekhad, N. J. A. Sloane, D. Zeilberger, Automated proofs (or disproofs) of linear recurrences satisfied by Pisot Sequences, arXiv:1609.05570 [math.NT], 2016.
FORMULA
Conjectures from Colin Barker, Jun 05 2016: (Start)
a(n) = (((3-sqrt(14))^n*(-15+4*sqrt(14))+(3+sqrt(14))^n*(15+4*sqrt(14))))/(2*sqrt(14)).
a(n) = 6*a(n-1)+5*a(n-2) for n>1.
G.f.: (4+3*x) / (1-6*x-5*x^2).
(End)
Theorem: a(n) = 6 a(n - 1) + 5 a(n - 2) for n >= 2. Proved using the PtoRv program of Ekhad-Sloane-Zeilberger, and implies the above conjectures. - N. J. A. Sloane, Sep 09 2016
MATHEMATICA
RecurrenceTable[{a[0] == 4, a[1] == 27, a[n] == Floor[a[n - 1]^2/a[n - 2] + 1/2]}, a, {n, 0, 25}] (* Bruno Berselli, Sep 03 2013 *)
nxt[{a_, b_}]:={b, Floor[b^2/a+1/2]}; NestList[nxt, {4, 27}, 30][[All, 1]] (* Harvey P. Dale, May 13 2018 *)
PROG
(Magma) Exy:=[4, 27]; [n le 2 select Exy[n] else Floor(Self(n-1)^2/Self(n-2)+1/2): n in [1..25]]; // Bruno Berselli, Sep 03 2013
(PARI) Vec((4+3*x)/(1-6*x-5*x^2) + O(x^25)) \\ Jinyuan Wang, Mar 10 2020
CROSSREFS
Sequence in context: A061693 A005974 A289718 * A078100 A356393 A036753
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Bruno Berselli, Sep 03 2013
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)