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.

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

This page as a plain text file.
%I A074865 #18 Jun 14 2023 17:27:13
%S A074865 1,1,1,1,4,7,13,25,67,157,316,1195,2635,9910,21796,33268,108541,
%T A074865 264685,566431,1384927,2251855,10267813,23278831,68031385,119376340,
%U A074865 223452859,339327088,1399568407,3282220573,12169858759,23849465446,130434244321,294426858097
%N A074865 a(n) = a(n-1) + R(a(n-2)) + R(a(n-3)) + R(a(n-4)) where a(1) = a(2) = a(3) = a(4) = 1 and R(n) (A004086) is the reverse of n.
%t A074865 a[1]=a[2]=a[3]=a[4]=1; R[n_]:=FromDigits[Reverse[IntegerDigits[n]]]; a[n_]:=a[n-1]+R[a[n-2]]+R[a[n-3]]+R[a[n-4]]; Array[a,32] (* _Stefano Spezia_, Jun 14 2023 *)
%Y A074865 Cf. A000288, A004086.
%K A074865 easy,base,nonn
%O A074865 1,5
%A A074865 _Felice Russo_, Sep 11 2002
%E A074865 Corrected and extended by _Michel ten Voorde_ Jun 13 2003
%E A074865 More terms from _Joshua Zucker_, May 08 2006
%E A074865 Definition adapted to offset by _Georg Fischer_, Jun 18 2021