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.

A350222 a(n) = Sum_{k=1..n} (-1)^(k+1) * floor((n/k)^3).

Original entry on oeis.org

1, 7, 25, 57, 114, 194, 310, 460, 658, 902, 1200, 1557, 1981, 2474, 3045, 3690, 4431, 5257, 6186, 7212, 8350, 9601, 10969, 12461, 14088, 15844, 17746, 19791, 21990, 24343, 26859, 29539, 32399, 35434, 38655, 42060, 45671, 49468, 53480, 57698, 62137, 66793, 71681
Offset: 1

Views

Author

Seiichi Manyama, Dec 20 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Sum[(-1)^(k + 1)*Floor[(n/k)^3], {k, 1, n}]; Array[a, 50] (* Amiram Eldar, Dec 20 2021 *)
  • PARI
    a(n) = sum(k=1, n, (-1)^(k+1)*(n^3\k^3));
    
  • Python
    def A350222(n): return (m:=n**3)+sum(m//k**3 if k&1 else -(m//k**3) for k in range(2,n+1)) # Chai Wah Wu, Oct 27 2023

Formula

a(n) = A309082(n^3).