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!)
A331759 a(n) = A115004(2n+1). 2
1, 31, 179, 585, 1463, 3065, 5729, 9797, 15737, 24087, 35315, 50073, 69025, 92871, 122475, 158681, 202529, 254597, 315957, 387977, 471589, 568227, 678971, 805241, 948515, 1109675, 1290839, 1493127, 1717571, 1966997, 2242925, 2547277, 2881033, 3246087, 3645459 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
N. J. A. Sloane, Families of Essentially Identical Sequences, Mar 24 2021 (Includes this sequence)
FORMULA
a(n) = (2*n+1)^2 + Sum_{i=2..2n+1} (2*n+2-i)*(4*n+4-i)*phi(i). - Chai Wah Wu, Aug 17 2021
PROG
(Python)
from sympy import totient
def A331759(n): return (2*n+1)**2 + sum(totient(i)*(2*n+2-i)*(4*n+4-i) for i in range(2, 2*n+2)) # Chai Wah Wu, Aug 17 2021
CROSSREFS
Sequence in context: A296959 A140587 A142140 * A325080 A139496 A145838
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 04 2020
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 July 31 08:07 EDT 2024. Contains 374774 sequences. (Running on oeis4.)