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!)
A366607 Sum of the divisors of 4^n+1. 11
3, 6, 18, 84, 258, 1302, 4356, 20520, 65538, 351120, 1110276, 5048232, 17041416, 82623888, 284225796, 1494039792, 4301668356, 20788904016, 73234343952, 332019460560, 1103789883396, 5936210280000, 18679788287496, 84884999116320, 282937726148616 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = sigma(4^n+1) = A000203(A052539(n)).
a(n) = A069061(2*n). - Max Alekseyev, Jan 08 2024
EXAMPLE
a(3)=84 because 4^3+1 has divisors {1, 5, 13, 65}.
MAPLE
a:=n->numtheory[sigma](4^n+1):
seq(a(n), n=0..100);
MATHEMATICA
DivisorSigma[1, 4^Range[0, 30]+1] (* Paolo Xausa, Oct 14 2023 *)
PROG
(Python)
from sympy import divisor_sigma
def A366607(n): return divisor_sigma((1<<(n<<1))+1) # Chai Wah Wu, Oct 14 2023
CROSSREFS
Sequence in context: A076510 A220816 A038060 * A345134 A135504 A307334
KEYWORD
nonn
AUTHOR
Sean A. Irvine, Oct 14 2023
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 3 03:31 EDT 2024. Contains 372204 sequences. (Running on oeis4.)