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.

A048572 a(n) = sum of digits of a(n-1)*a(n-2).

This page as a plain text file.
%I A048572 #20 Dec 14 2023 05:22:05
%S A048572 1,2,2,4,8,5,4,2,8,7,11,14,10,5,5,7,8,11,16,14,8,4,5,2,1,2,2,4,8,5,4,
%T A048572 2,8,7,11,14,10,5,5,7,8,11,16,14,8,4,5,2,1,2,2,4,8,5,4,2,8,7,11,14,10,
%U A048572 5,5,7,8,11,16,14,8,4,5,2
%N A048572 a(n) = sum of digits of a(n-1)*a(n-2).
%C A048572 This sequence is periodic with period 24. - _T. D. Noe_, Feb 15 2008
%H A048572 <a href="/index/Rec#order_24">Index entries for linear recurrences with constant coefficients</a>, signature (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1).
%F A048572 a(n) = a(n-24) for n >= 25. - _Wesley Ivan Hurt_, Mar 09 2023
%t A048572 Nest[Append[#,Total[IntegerDigits[Last[#]#[[-2]]]]]&,{1,2},80]  (* _Harvey P. Dale_, Apr 21 2011 *)
%t A048572 PadRight[{},100,{1,2,2,4,8,5,4,2,8,7,11,14,10,5,5,7,8,11,16,14,8,4,5,2}] (* _Harvey P. Dale_, Jan 18 2015 *)
%K A048572 nonn,easy,nice,base
%O A048572 1,2
%A A048572 _David Johnson-Davies_