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.

A174651 Numbers n such that Sum_{k=1..n} k*Mobius(k) = n.

Original entry on oeis.org

1, 88, 125, 5246
Offset: 1

Views

Author

Carl Najafi, Dec 22 2012

Keywords

Comments

No more terms < 10^7.

Crossrefs

Programs

  • Mathematica
    muSums = Accumulate@Table[MoebiusMu[k] k, {k, 10^7}]; A174651 = {}; For[i = 1, i <= Length@muSums, i++, If[muSums[[i]] == i, AppendTo[A174651, i]]]; A174651
    smQ[x_]:=x==Total[Table[n*MoebiusMu[n],{n,x}]]; Select[Range[6000],smQ] (* Harvey P. Dale, Oct 05 2019 *)