cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A228778 a(n) = 2^Fibonacci(n) + 1.

This page as a plain text file.
%I A228778 #27 Aug 12 2017 07:43:28
%S A228778 2,3,3,5,9,33,257,8193,2097153,17179869185,36028797018963969,
%T A228778 618970019642690137449562113,
%U A228778 22300745198530623141535718272648361505980417,13803492693581127574869511724554050904902217944340773110325048447598593
%N A228778 a(n) = 2^Fibonacci(n) + 1.
%F A228778 a(n+2) = a(n+1)*a(n) - a(n) - a(n+1) + 2, a(0)=2, a(1)=3.
%F A228778 Binet type formula: log_2(a(n)-1) = (1/sqrt(5)) * (r^n - s^n), where r and s are the roots of x^2-x-1. (this is true by definition).
%F A228778 a(n) = A000301(n) + 1 = A063896(n) + 2. - _Alois P. Heinz_, Aug 12 2017
%p A228778 a:= n-> 1 + 2^(<<0|1>, <1|1>>^n)[1,2]:
%p A228778 seq(a(n), n=0..15);  # _Alois P. Heinz_, Aug 12 2017
%t A228778 Table[2^Fibonacci[n] + 1, {n, 0, 13}] (* _T. D. Noe_, Sep 07 2013 *)
%Y A228778 Cf. A000045, A000301, A063896.
%K A228778 nonn
%O A228778 0,1
%A A228778 _Yeshwant Shivrai Valaulikar_ and M. Tamba, Sep 04 2013