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.

A091395 a(n) = Product_{ p | n } (1 + Legendre(-7,p) ).

Original entry on oeis.org

1, 2, 0, 2, 0, 0, 1, 2, 0, 0, 2, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 4, 0, 4, 0, 0, 1, 0, 0, 0, 2, 0, 0, 2, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 2, 0, 0, 4, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 4, 0, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0
Offset: 1

Views

Author

N. J. A. Sloane, Mar 02 2004

Keywords

Crossrefs

Programs

  • Maple
    with(numtheory); L := proc(n,N) local i,t1,t2; t1 := ifactors(n)[2]; t2 := mul((1+legendre(N,t1[i][1])),i=1..nops(t1)); end; [seq(L(n,-7),n=1..120)];
  • Mathematica
    a[n_] := Times@@ (1+KroneckerSymbol[-7, #]& /@ FactorInteger[n][[All, 1]]);
    Array[a, 105] (* Jean-François Alcover, Apr 08 2020 *)
  • PARI
    a(n)={my(f=factor(n)[,1]); prod(i=1, #f, 1 + kronecker(-7, f[i]))} \\ Andrew Howroyd, Jul 23 2018

Formula

Asymptotic mean: Limit_{m->oo} (1/m) * Sum_{k=1..m} a(k) = 7*sqrt(7)/(8*Pi) = 0.736897... . - Amiram Eldar, Oct 17 2022