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 A049762 #20 Sep 08 2022 08:44:58 %S A049762 0,0,1,1,4,1,9,7,11,12,25,18,34,34,41,32,76,44,87,64,93,85,122,75,80, %T A049762 160,144,132,172,103,218,232,220,245,251,210,299,330,344,315,413,275, %U A049762 456,392,383,472,502,479,449,553,557,626,646,632,628,618,771 %N A049762 a(n) = Sum_{k=1..n} T(n,k), array T as in A049761. %H A049762 Vincenzo Librandi, <a href="/A049762/b049762.txt">Table of n, a(n) for n = 1..1000</a> %F A049762 a(n) = Sum_{i=1..n} (n^3 mod i). - _Wesley Ivan Hurt_, Sep 15 2017 %p A049762 seq( add( `mod`(n^3, k), k = 1..n), n = 1..60); # _G. C. Greubel_, Dec 14 2019 %t A049762 Table[Sum[Mod[n^3, i], {i, n}], {n, 60}] (* _Vincenzo Librandi_, Sep 18 2017 *) %o A049762 (Magma) [&+[n^3 mod i: i in [1..n]]: n in [1..60]]; // _Vincenzo Librandi_, Sep 18 2017 %o A049762 (PARI) vector(60, n, sum(k=1,n, lift(Mod(n,k)^3)) ) \\ _G. C. Greubel_, Dec 14 2019 %o A049762 (Sage) [sum(power_mod(n,3,k) for k in (1..n)) for n in (1..60)] # _G. C. Greubel_, Dec 14 2019 %o A049762 (GAP) List([1..60], n-> Sum([1..n], k-> PowerMod(n,3,k)) ); # _G. C. Greubel_, Dec 14 2019 %Y A049762 Row sums of A049761. %Y A049762 Cf. A049759, A049760, A049763, A049764. %K A049762 nonn,easy %O A049762 1,5 %A A049762 _Clark Kimberling_