login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A216784 a(n) is the number of prime divisors of n^2 + 1 of the form a^2 + 1. 1
1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 1, 2, 0, 1, 1, 2, 2, 1, 1, 1, 1, 3, 0, 1, 0, 3, 1, 1, 0, 1, 1, 2, 1, 2, 1, 2, 1, 1, 0, 1, 1, 2, 1, 1, 1, 2, 2, 1, 0, 1, 2, 2, 1, 1, 0, 2, 1, 1, 1, 2, 1, 2, 1, 1, 0, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(m) = 0 for m = A217276(n).
LINKS
EXAMPLE
a(13) = 3 because 13^2+1 = 170 = 2*5*17 with 3 divisors of the form a^2+1 such that 2 = 1^2+1, 5=2^2+1 and 17 = 4^2+1.
a(34) = 0 because 34^2+1 = 1157 = 13*89 and the prime divisors 13, 89 are not of the form a^2+1.
MAPLE
with(numtheory):for n from 1 to 100 do:x:=n^2+1:y:=factorset(x):n1:=nops(y):i:=0:for k from 1 to n1 do:z:=sqrt(y[k]-1):if z=floor(z) then i:=i+1:else fi:od: printf(`%d, `, i):od:
MATHEMATICA
a[n_] := Length @ Select[FactorInteger[n^2 + 1][[;; , 1]], IntegerQ @ Sqrt[# - 1] &]; Array[a, 100] (* Amiram Eldar, Sep 11 2019 *)
CROSSREFS
Sequence in context: A003649 A353741 A287170 * A256067 A256554 A321649
KEYWORD
nonn
AUTHOR
Michel Lagneau, Oct 15 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 6 11:04 EDT 2024. Contains 372293 sequences. (Running on oeis4.)