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.

A088824 Numbers n such that the sum of smallest prime factors of numbers from 1 to n is divisible by n.

Original entry on oeis.org

1, 2, 7, 14, 78, 113, 153, 439, 462, 1215, 2294, 8363, 11102, 12302, 36382, 38370, 60398, 199953, 224090, 421399, 427131, 1947938, 2467022, 2571633, 62395623, 462027217, 2140648015, 6418011931, 43074345625, 52714450814, 71229445182, 90719472005, 105685014433
Offset: 1

Views

Author

Labos Elemer, Oct 22 2003

Keywords

Crossrefs

Programs

  • Mathematica
    smp[n_] := If[n==1, 0, FactorInteger[n][[1, 1]]]; s = Accumulate @ Array[ smp, 10^5]; Select[Range[10^5], Mod[s[[#]], #] == 0 &] (* Giovanni Resta, Apr 27 2017 *)

Formula

Solutions to Mod[A088821[x], x]=0.

Extensions

More terms from Ray Chandler, Oct 31 2003
a(27)-a(31) from Donovan Johnson, Jul 09 2010
a(32)-a(33) from Giovanni Resta, Apr 27 2017