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.

A203444 Numbers in range of Dedekind Psi function: A001615.

Original entry on oeis.org

1, 3, 4, 6, 8, 12, 14, 18, 20, 24, 30, 32, 36, 38, 42, 44, 48, 54, 56, 60, 62, 68, 72, 74, 80, 84, 90, 96, 98, 102, 104, 108, 110, 112, 114, 120, 126, 128, 132, 138, 140, 144, 150, 152, 158, 160, 162, 164, 168, 174, 176, 180, 182, 186, 192, 194, 198, 200
Offset: 1

Views

Author

Enrique Pérez Herrero, Jan 02 2012

Keywords

Comments

a(n) is even for n>2

Crossrefs

Programs

  • Mathematica
    terms = 100; Clear[seq]; seq[k_] := seq[k] = Table[DirichletConvolve[j, MoebiusMu[j]^2, j, n], {n, 1, k terms}] // Union // PadRight[#, terms]&;
    seq[k = 1]; seq[k++]; While[Print[k]; seq[k] != seq[k-1], k++];
    seq[k] (* Jean-François Alcover, Dec 14 2018, after Jan Mangaldan in A001615 *)