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!)
A302249 a(n) is the number of divisors of A279254(n) in Gaussian integers. 2

%I #20 Feb 19 2020 07:23:52

%S 1,3,5,6,7,12,20,24,28,40,45,56,60,63,72,80,90,96,112,126,160,162,180,

%T 224,240,252,288,360,384,504,540,640,648,720,756,896,960,1008,1152,

%U 1440,2016,2160,2592,3024,3168,3584,3888,4032

%N a(n) is the number of divisors of A279254(n) in Gaussian integers.

%C The divisors are counted mod associates.

%C Conjecture: a(14) = 63 is the largest odd term.

%H Amiram Eldar, <a href="/A302249/b302249.txt">Table of n, a(n) for n = 1..394</a> (calculated from the b-file at A279254)

%H <a href="/index/Ga#gaussians">Index entries for Gaussian integers and primes</a>

%F a(n) = A062327(A279254(n)).

%e A279254(14) = 200 and 200 has 63 divisors in Gaussian integers (up to association), so a(14) = 63.

%t With[{s = Array[DivisorSigma[0, #, GaussianIntegers -> True] &, 10^6]}, Union@ FoldList[Max, s]] (* _Michael De Vlieger_, Apr 05 2018 *)

%o (PARI)

%o b(n)= \\ A062327

%o {

%o my(r=1, f=factor(n));

%o for(j=1, #f[, 1], my(p=f[j, 1], e=f[j, 2]);

%o if(p==2, r*=(2*e+1));

%o if(p%4==1, r*=(e+1)^2);

%o if(p%4==3, r*=(e+1));

%o );

%o return(r);

%o }

%o { my(r=0, t); for(n=1, 10^6, t=b(n); if(t>r, r=t; print1(t, ", "))); }

%o \\ _Joerg Arndt_, Apr 04 2018

%Y Cf. A062327, A279254.

%K nonn

%O 1,2

%A _Jianing Song_, Apr 04 2018

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 July 27 13:23 EDT 2024. Contains 374647 sequences. (Running on oeis4.)