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.

A261082 a(n) = number of steps required to reach 0 from F(n+2) by repeatedly subtracting from a natural number the number of ones in its Zeckendorf representation. Here F(n) = the n-th Fibonacci number, F(0) = 0, F(1) = 1, F(2) = 1, F(3) = 2, ...

This page as a plain text file.
%I A261082 #8 Aug 10 2015 07:30:59
%S A261082 1,2,3,4,6,8,11,16,24,35,52,77,114,170,255,385,584,889,1358,2081,3199,
%T A261082 4932,7625,11818,18357,28568,44530,69504,108607,169869,265899,416507,
%U A261082 652845,1023946,1607064,2524042,3967246,6240680,9825202,15481988,24416684,38539840,60880090
%N A261082 a(n) = number of steps required to reach 0 from F(n+2) by repeatedly subtracting from a natural number the number of ones in its Zeckendorf representation. Here F(n) = the n-th Fibonacci number, F(0) = 0, F(1) = 1, F(2) = 1, F(3) = 2, ...
%F A261082 a(n) = A219642(A000045(n+2)).
%F A261082 a(0) = 1; for n >= 1, a(n) = A261091(n) + a(n-1).
%F A261082 Other identities. For all n >= 0:
%F A261082 a(n) = A261081(n)+1.
%o A261082 (Scheme, two alternatives, the other one using memoizing definec-macro)
%o A261082 (define (A261082 n) (A219642 (A000045 (+ 2 n))))
%o A261082 (definec (A261082 n) (if (zero? n) 1 (+ (A261091 n) (A261082 (- n 1)))))
%Y A261082 One more than A261081.
%Y A261082 First differences give A261091.
%Y A261082 Cf. A000045, A219642, A261102.
%K A261082 nonn
%O A261082 0,2
%A A261082 _Antti Karttunen_, Aug 08 2015