OFFSET
2,1
LINKS
Robert Israel, Table of n, a(n) for n = 2..1659
Shinsaku Fujita, alpha-beta Itemized Enumeration of Inositol Derivatives and m-Gonal Homologs by Extending Fujita's Proligand Method, Bull. Chem. Soc. Jpn. 2017, 90, 343-366; doi:10.1246/bcsj.20160369. See Table 8.
FORMULA
a(n) = A283848(2*n)=(4*n)^(-1)*Sum_{d|2*n, d even} phi(d)*4^(2*n/d) + 5*2^(2*n-2). - Robert Israel, Aug 23 2018 after Fujita (2017), Eq. (101)
MAPLE
f:= proc(n) uses numtheory;
(4*n)^(-1)*add(phi(d)*4^(2*n/d), d=select(type, divisors(2*n), even))+5*2^(2*n-2)
end proc:
map(f, [$2..40]);
PROG
(PARI) A(m, n) = if (m%2, 2^((m-1)/2)*n^((m+1)/2), sumdiv(m, d, ((d%2)==0)*(eulerphi(d)*2^(m/d)*n^(m/d)))/(2*m) + 2^(m/2-2)*n^(m/2)*(2*n+1));
lista(nn) = for(n=2, nn, print1(T(2*n, 2), ", ")) \\ Michel Marcus, Apr 02 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Apr 01 2017
EXTENSIONS
More terms from Michel Marcus, Apr 02 2017
Edited by Robert Israel, Aug 23 2018
STATUS
approved