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.

A172150 Smallest Fibonacci number divisible by 2^(2*n).

Original entry on oeis.org

8, 144, 4807526976, 5972304273877744135569338397692020533504
Offset: 1

Views

Author

Keywords

Comments

The next term has 161 digits.

Examples

			f(12)=144=2^4*3^2,
f(48)=4807526976=2^6*3^2*7*23*47*1103,
f(192)=2^8*3^2*7*23*47*769*1087*1103*2207*..,
f(768)=2^10*3^2*7*23*47*127*383*..,..
		

Crossrefs

Programs

  • Mathematica
    lst={8};k=12;Do[AppendTo[lst,Fibonacci[k]];k*=4,{n,5}];lst