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 A351797 #5 Feb 20 2022 06:45:41 %S A351797 1,1,3,9,29,87,273,819,2493,7497,22607,67821,203919,611757,1836363, %T A351797 5509437,16531749,49595247,148796757,446390271,1339201845,4017608811, %U A351797 12052916861,36158750583,108476535993,325429609661,976289644659,2928868963893,8786609348535 %N A351797 a(1) = 1; a(n+1) = -a(n) + 2 * Sum_{d|n} a(n/d) * a(d). %F A351797 G.f.: x * ( 1 + 2 * Sum_{i>=1} Sum_{j>=2} a(i) * a(j) * x^(i*j) ) / (1 - x). %F A351797 a(n) = A351787(n) / 2 for n > 1. %t A351797 a[1] = 1; a[n_] := a[n] = -a[n - 1] + 2 Sum[a[(n - 1)/d] a[d], {d, Divisors[n - 1]}]; Table[a[n], {n, 1, 29}] %Y A351797 Cf. A038044, A084978, A122698, A277120, A339755, A341697, A345139, A351787, A351788. %K A351797 nonn %O A351797 1,3 %A A351797 _Ilya Gutkovskiy_, Feb 19 2022