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.
%I A014851 #13 Jul 03 2021 16:13:13 %S A014851 1,2,3,4,6,9,10,12,18,20,21,27,30,36,42,50,54,60,63,68,78,81,84,90, %T A014851 100,108,110,126,147,150,156,162,171,180,189,204,210,220,234,243,250, %U A014851 252,270,294,300,310,324,330,340,342,378,390,410,420,441,450,468,486 %N A014851 Numbers k that divide s(k), where s(1)=1, s(j)=4*s(j-1)+j. %H A014851 Harvey P. Dale, <a href="/A014851/b014851.txt">Table of n, a(n) for n = 1..1000</a> %t A014851 nxt[{k_,a_}]:={k+1,4a+k+1}; Transpose[Select[NestList[nxt,{1,1},500], Divisible[#[[2]],#[[1]]]&]][[1]] (* _Harvey P. Dale_, May 29 2013 *) %Y A014851 s(n) = A014825(n). %K A014851 nonn %O A014851 1,2 %A A014851 _N. J. A. Sloane_, _Olivier Gérard_