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.

A178174 a(1)=a(2)=a(3)=a(4)=1; thereafter a(n) = gpf(a(n-1)+a(n-2)+a(n-3)+a(n-4)), where gpf is the greatest prime factor.

This page as a plain text file.
%I A178174 #22 Jan 05 2025 19:51:39
%S A178174 1,1,1,1,2,5,3,11,7,13,17,3,5,19,11,19,3,13,23,29,17,41,11,7,19,13,5,
%T A178174 11,3,2,7,23,7,13,5,3,7,7,11,7,2,3,23,7,7,5,7,13,2,3,5,23,11,7,23,2,
%U A178174 43,5,73,41,3,61,89,97,5,7,11,5,7,5,7,3,11,13,17,11,13,3,11,19,23,7,5,3,19,17,11,5,13,23,13,3,13,13,7,3,3,13,13,2,31,59,7,11,3,5,13,2,23,43,3,71,7,31
%N A178174 a(1)=a(2)=a(3)=a(4)=1; thereafter a(n) = gpf(a(n-1)+a(n-2)+a(n-3)+a(n-4)), where gpf is the greatest prime factor.
%C A178174 After 133 steps, enters a cycle of length 14.
%H A178174 Greg Back and Mihai Caragiu, <a href="https://web.archive.org/web/2024*/https://www.fq.math.ca/Papers1/48-4/Back_Caragiu.pdf">The Greatest Prime Factor and Recurrent Sequences</a>, Fibonacci Quart. 48 (2010), no. 4, 358-362.
%t A178174 nxt[{a_,b_,c_,d_}]:={b,c,d,FactorInteger[a+b+c+d][[-1,1]]}; Transpose[ NestList[ nxt,{1,1,1,1},120]][[1]] (* _Harvey P. Dale_, Sep 24 2013 *)
%Y A178174 Cf. A006530, A175723, A177904.
%K A178174 nonn,easy
%O A178174 1,5
%A A178174 _N. J. A. Sloane_, Dec 18 2010