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.

A167398 a(n) = Fibonacci(11*n).

This page as a plain text file.
%I A167398 #12 Sep 08 2022 08:45:48
%S A167398 0,89,17711,3524578,701408733,139583862445,27777890035288,
%T A167398 5527939700884757,1100087778366101931,218922995834555169026,
%U A167398 43566776258854844738105,8670007398507948658051921
%N A167398 a(n) = Fibonacci(11*n).
%H A167398 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (199, 1).
%F A167398 a(0)=0, a(1)=89; a(n) = 199*a(n-1) + a(n-2) for n > 1.
%t A167398 (*1*)Table[Fibonacci[11k],{k,0,20}]
%t A167398 (*2*){a,b}={0,89};Do[Print[c={a,b}.{1,199}];a=b;b=c,{20}]
%o A167398 (Magma) [Fibonacci(11*n): n in [0..100]]; // _Vincenzo Librandi_, Apr 17 2011
%Y A167398 Cf. A134498 Fibonacci(7n).
%K A167398 nonn
%O A167398 0,2
%A A167398 _Zak Seidov_, Nov 02 2009