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

A243967
Decimal expansion of 'xi', a constant related to the second order quadratic recurrence q(0)=q(1)=1, q(n)=q(n-2)*(q(n-1)+1).
2
1, 3, 5, 0, 5, 0, 6, 1, 2, 5, 1, 3, 1, 1, 7, 1, 5, 3, 0, 3, 3, 1, 8, 3, 7, 6, 7, 7, 2, 2, 6, 2, 4, 1, 5, 9, 7, 2, 5, 2, 3, 0, 6, 9, 8, 0, 3, 1, 3, 0, 1, 9, 2, 5, 5, 8, 6, 0, 9, 7, 8, 4, 0, 6, 1, 6, 4, 5, 0, 7, 4, 0, 0, 8, 8, 8, 8, 1, 5, 1, 3, 5, 8, 8, 9, 8, 3, 4, 8, 3, 5, 5, 6, 8, 5, 1, 5, 1, 1
OFFSET
1,2
REFERENCES
Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, Section 6.10 Quadratic recurrence constants, pp. 445-446.
FORMULA
q(n) = floor(xi^(phi^n)*eta^((1-phi)^n)) where phi is the golden ratio (1+sqrt(5))/2 and eta is A243968.
EXAMPLE
1.3505061251311715303318376772262415972523...
MATHEMATICA
digits = 99; n0 = 5; dn = 5; Clear[q]; q[0] = q[1] = 1; q[n_] := q[n] = q[n - 2] (q[n - 1] + 1); xi[n_] := xi[n] = ((q[n] - 1)^(1/2*( Sqrt[5] - 1))*(q[n + 1] - 1))^((1/2*( Sqrt[5] - 1))^n/Sqrt[5]); xi[n0]; xi[n = n0 + dn]; While[RealDigits[xi[n], 10, digits + 10] != RealDigits[xi[n - 5], 10, digits + 10], Print["n = ", n]; n = n + dn]; RealDigits[xi[n], 10, digits] // First
CROSSREFS
Cf. A006277, A243968 (eta).
Sequence in context: A200520 A224933 A307209 * A144541 A100609 A104866
KEYWORD
nonn,cons
AUTHOR
STATUS
approved