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.

A348502 a(n) = A348498(A276086(n)).

Original entry on oeis.org

0, 1, 1, 5, 1, 7, 1, 7, 8, 31, 13, 41, 1, 9, 11, 37, 8, 47, 3, 11, 14, 43, 19, 53, 2, 13, 17, 49, 11, 59, 1, 9, 10, 41, 17, 55, 12, 59, 71, 247, 106, 317, 19, 73, 92, 289, 127, 359, 26, 87, 113, 331, 148, 401, 33, 101, 134, 373, 169, 443, 1, 11, 13, 47, 10, 61, 17, 69, 86, 277, 121, 347, 12, 83, 107, 319, 71, 389, 31
Offset: 0

Views

Author

Antti Karttunen, Oct 23 2021

Keywords

Crossrefs

Cf. also A342002 for a similar scatter plot.

Programs

  • Mathematica
    b = MixedRadix[Reverse@ Prime@ Range@ 12]; f[n_] := If[n < 2, 0, n Total[#2/#1 & @@@ FactorInteger[n]]]; Map[Function[n, GCD[f[n], DivisorSum[n, # f[n/#] &]]*Apply[Times, FactorInteger[n][[All, 1]]]/n], Array[Times @@ Power @@@ # &@ Transpose@ {Prime@ Range@ Length@ #, Reverse@ #} &@ IntegerDigits[#, b] &, 79, 0]] (* Michael De Vlieger, Oct 25 2021 *)
  • PARI
    \\ Needs also code from A348498:
    A276086(n) = { my(m=1, p=2); while(n, m *= (p^(n%p)); n = n\p; p = nextprime(1+p)); (m); };
    A348502(n) = A348498(A276086(n));