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.

A252890 Number of times the greatest prime factor of n^2 + 1 is a factor in all numbers <= n.

Original entry on oeis.org

1, 1, 2, 1, 1, 1, 4, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 6, 1, 1, 4, 1, 3, 1, 1, 2, 7, 1, 1, 2, 1, 1, 1, 1, 2, 1, 9, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 6, 1, 3, 4, 1, 2, 2, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1
Offset: 1

Views

Author

Michel Lagneau, Dec 24 2014

Keywords

Comments

The greatest prime factor is counted with multiplicity (see the example).
a(n)=1 iff n^2 + 1 is prime.

Examples

			a(7)=4 because 7^2 + 1 = 50 and 5 is 4 times a factor:
2^2+1 = 5;
3^2+1 = 10 = 2*5;
7^2+1 = 50 = 2*5*5 (two times).
		

Crossrefs

Programs

  • Maple
    with(numtheory): with(padic,ordp):
    f:= proc(n) local p ,q, n0;
      q:=factorset(n^2+1);n0:=nops(q);p:= q[n0];
      add(ordp(k^2+1, p), k=1..n);
    end proc:
    seq(f(n), n=1.. 100);
    # Using code from Robert Israel adapted for this sequence. See A078897.