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.

A119249 Indices of Fibonacci numbers in A081952.

This page as a plain text file.
%I A119249 #9 Jun 24 2023 04:21:28
%S A119249 4,7,10,17,22,31,41,47,49,71,71,98,119,161,169,191,191,239,239,239,
%T A119249 338,338,338,431,431,449,529,599,649,649,769,769,769,769,769,769,1009,
%U A119249 1009,1009,1409,1441,1441,1441,1441,1729,1889,1889,1889,1889,2159,2209,2209,2209,2591,2642,2642
%N A119249 Indices of Fibonacci numbers in A081952.
%F A119249 A081952(n) = F(a(n)), where F(k) is the k-th Fibonacci number.
%F A119249 a(n) = the smallest k>3 such that A086435(A000045(k)-1)>=n. - _Max Alekseyev_, Apr 23 2010
%e A119249 A081952(4) = 1597 and 1597 is the 17th Fibonacci number, so a(4) = 17.
%t A119249 f[n_, m_, 0] := n == 1; f[n_, m_, d_] := (b = False; l = Select[Divisors[n], #>=m&]; For[i = 1, i <= Length[l], i++, k = l[[i]]; If[f[n / k, k + 1, d - 1], b = True; Break[]]]; b); Do[x = 3; While[ !f[Fibonacci[x] - 1, 2, y], x++ ]; Print[x], {y, 1, 50}]
%Y A119249 Cf. A000045, A000071, A081952, A086435.
%K A119249 nonn
%O A119249 1,1
%A A119249 _Ryan Propper_, Jul 22 2006
%E A119249 a(24)-a(26) from _Max Alekseyev_, Apr 23 2010
%E A119249 a(27)-a(56) from _Amiram Eldar_, Jun 24 2023