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.

A032512 Sum of the integer part of 4th roots of integers <= n.

This page as a plain text file.
%I A032512 #27 Dec 14 2024 16:30:12
%S A032512 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,21,23,25,27,29,31,33,35,
%T A032512 37,39,41,43,45,47,49,51,53,55,57,59,61,63,65,67,69,71,73,75,77,79,81,
%U A032512 83,85,87,89,91,93,95,97,99,101,103,105,107,109,111,113,115,117,119
%N A032512 Sum of the integer part of 4th roots of integers <= n.
%F A032512 G.f.: Sum_{k>=1} x^(k^4)/(1 - x)^2. - _Ilya Gutkovskiy_, Dec 22 2016
%F A032512 a(n) = -(1/30) * floor(n^(1/4)) * (-31 - 30 * n + 10 * floor(n^(1/4))^2 + 15 * floor(n^(1/4))^3 + 6 * floor(n^(1/4))^4). - _Pooya Farshim_, Sep 28 2024
%t A032512 Accumulate[Floor[Surd[Range[0,70],4]]] (* _Harvey P. Dale_, Dec 14 2024 *)
%o A032512 (PARI) a(n) = sum(k=1, n, sqrtnint(k, 4)); \\ _Michel Marcus_, Mar 12 2016
%Y A032512 Cf. A022554, A031876, A032513.
%Y A032512 Partial sums of A255270.
%K A032512 nonn
%O A032512 0,3
%A A032512 Michel Tixier (tixier(AT)dyadel.net)
%E A032512 NAME adapted to offset. - _Giovanni Resta_, May 08 2020