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.

A340862 Number of times the number n turns up in pseudo-Fibonacci sequences starting with [k, 1] (with k >= 1), excluding the starting terms.

This page as a plain text file.
%I A340862 #21 Mar 20 2021 16:06:16
%S A340862 0,1,2,2,3,2,3,3,3,2,4,2,4,3,3,2,4,3,3,3,4,2,5,2,3,3,3,3,5,2,3,3,4,3,
%T A340862 4,2,4,4,3,2,4,2,4,3,4,2,5,3,3,3,3,2,6,2,4,3,3,3,4,3,4,3,4,2,4,2,3,4,
%U A340862 4,2,4,2,5,3,3,3,5,3,3,3,3,2,5,2,4,4,3,3
%N A340862 Number of times the number n turns up in pseudo-Fibonacci sequences starting with [k, 1] (with k >= 1), excluding the starting terms.
%C A340862 In the first 100000 terms, this never exceeds 8. For any n > 2, a(n) will be at least 2, since k=n-1 and k=n-2 will both work.
%C A340862 Conjecture: for n > 2, a(n) appears to be equal to 1 + A067148(n).
%H A340862 Jinyuan Wang, <a href="/A340862/b340862.txt">Table of n, a(n) for n = 1..10000</a>
%e A340862 For n=2, the single solution is the third term of the Fibonacci sequence (k=1), so a(2)=1.
%e A340862 For n=3, we observe the value as the fourth term for k=1, and the third term for k=2 for a total count of a(3) = 2.
%e A340862 For n=4, we have k=2 and k=3, so a(4) = 2.
%e A340862 For n=5, we have k=1, k=3, k=4.
%o A340862 (Python)
%o A340862 def get_val(n):
%o A340862     res = 0
%o A340862     for k in range(1, n):
%o A340862         (a, b) = (k, 1)
%o A340862         while b < n:
%o A340862             (a, b) = (b, a+b)
%o A340862             if b == n:
%o A340862                 res += 1
%o A340862     return res
%o A340862 (PARI) a(n) = my(c, x, y=1); while(n>=x+=2*y, y=x-y; x-=y; if((n-y)%x==0, c++)); c; \\ _Jinyuan Wang_, Mar 20 2021
%Y A340862 Cf. A067148, A067149.
%K A340862 nonn
%O A340862 1,3
%A A340862 _Robby Goetschalckx_, Jan 24 2021
%E A340862 Offset changed and a(1) inserted by _Jinyuan Wang_, Mar 20 2021