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.

A074863 a(n) = a(n-1) + a(n-2) + a(n-3) + R(a(n-4)) where a(0)=a(1)=a(2)=a(3)=1 and R(n) (A004086) is the reverse of n.

This page as a plain text file.
%I A074863 #12 Jun 23 2015 11:22:19
%S A074863 1,1,1,1,4,7,13,25,49,94,199,394,781,1423,3589,6286,11485,24601,52225,
%T A074863 95137,230374,388378,766114,1458025,3085549,6183571,11138812,25616473,
%U A074863 52394659,90903760,190798003,371558074,748909162,1317996148,2739360475,5277120958
%N A074863 a(n) = a(n-1) + a(n-2) + a(n-3) + R(a(n-4)) where a(0)=a(1)=a(2)=a(3)=1 and R(n) (A004086) is the reverse of n.
%H A074863 Alois P. Heinz, <a href="/A074863/b074863.txt">Table of n, a(n) for n = 0..1000</a>
%H A074863 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a>
%p A074863 read transforms; A074863 := proc(n) option remember; local i,j,k,t1; if n <= 3 then 1 else A074863(n-1)+A074863(n-2)+A074863(n-3) +digrev(A074863(n-4)); fi; end;
%Y A074863 Cf. A000288.
%K A074863 easy,base,nonn
%O A074863 0,5
%A A074863 _Felice Russo_, Sep 11 2002
%E A074863 Corrected and extended by _David Garber_, Oct 23 2002