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.

A285714 a(1) = 0; for n > 1, a(n) = 1 + a(A285712(n)).

This page as a plain text file.
%I A285714 #6 Apr 25 2017 11:47:22
%S A285714 0,1,2,3,2,4,5,3,6,7,4,8,3,3,9,10,5,4,11,6,12,13,4,14,4,7,15,5,8,16,
%T A285714 17,5,6,18,9,19,20,4,5,21,4,22,7,10,23,6,11,8,24,6,25,26,5,27,28,12,
%U A285714 29,9,7,7,5,13,4,30,14,31,8,5,32,33,15,6,10,5,34,35,8,11,36,16,9,37,6,38,6,9,39,5,17,40,41,18,12,7,6,42,43,7,44,45,19,10,13
%N A285714 a(1) = 0; for n > 1, a(n) = 1 + a(A285712(n)).
%H A285714 Antti Karttunen, <a href="/A285714/b285714.txt">Table of n, a(n) for n = 1..8192</a>
%F A285714 a(1) = 0; for n > 1, a(n) = 1 + a(A285712(n)).
%F A285714 a(n) = A029837(1+A245611(n)).
%F A285714 a(n) = A285715(n) + A285716(n).
%o A285714 (Scheme)
%o A285714 ;; First definition uses memoization-macro definec:
%o A285714 (definec (A285714 n) (if (<= n 1) 0 (+ 1 (A285714 (A285712 n)))))
%o A285714 (define (A285714 n) (A029837 (+ 1 (A245611 n))))
%Y A285714 Cf. A029837, A245611, A285712, A285713, A285715, A285716.
%K A285714 nonn
%O A285714 1,3
%A A285714 _Antti Karttunen_, Apr 25 2017