A074700 a(n) = tau(F(2^n)) where tau(x) is the number of divisors of x (A000005(x)) and F(k) the k-th Fibonacci number (A000045(k)).
1, 2, 4, 8, 16, 64, 256, 1024, 8192, 131072, 1048576
Offset: 1
Links
Programs
-
Magma
[NumberOfDivisors(Fibonacci(2^n)): n in [1..11]]; // Vincenzo Librandi, Jun 18 2017
-
Mathematica
Table[DivisorSigma[0, Fibonacci[2^n]], {n, 11}] (* Vincenzo Librandi, Jun 18 2017 *)
-
PARI
a(n)=numdiv(fibonacci(2^n)) \\ Charles R Greathouse IV, Apr 09 2012
Extensions
More terms from Sean A. Irvine, Jun 02 2005
Comments