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!)
A087122 a(n) is the number of non-congruent solutions to x^2*y^2 == 0 (mod n). 1
1, 3, 5, 12, 9, 15, 13, 32, 45, 27, 21, 60, 25, 39, 45, 128, 33, 135, 37, 108, 65, 63, 45, 160, 225, 75, 189, 156, 57, 135, 61, 320, 105, 99, 117, 540, 73, 111, 125, 288, 81, 195, 85, 252, 405, 135, 93, 640, 637, 675, 165, 300, 105, 567, 189, 416, 185, 171, 117, 540, 121, 183, 585, 1280, 225, 315, 133, 396, 225, 351 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
Multiplicative with a(p^e) = p^(e + floor(e/2) - 1)*((p-1)*ceiling(e/2) + p). - Andrew Howroyd, Jul 15 2018
MATHEMATICA
a[n_] := Product[{p, e} = pe; p^(e+Floor[e/2]-1)((p-1) Ceiling[e/2]+p), {pe, FactorInteger[n]}];
a /@ Range[1, 100] (* Jean-François Alcover, Sep 20 2019 *)
PROG
(PARI) a(n)={my(f=factor(n)); prod(i=1, #f~, my(p=f[i, 1], e=f[i, 2]); p^(e + e\2 - 1)*((p-1)*((e+1)\2) + p))} \\ Andrew Howroyd, Jul 15 2018
CROSSREFS
Sequence in context: A343738 A066541 A279728 * A358336 A286900 A361111
KEYWORD
mult,nonn
AUTHOR
Yuval Dekel (dekelyuval(AT)hotmail.com), Oct 18 2003
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 April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)