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!)
A341712 a(n) = A120963(2*n)/2. 3
3, 12, 39, 112, 292, 710, 1629, 3567, 7505, 15266, 30140, 57983, 108981, 200625, 362433, 643653, 1125269, 1939149, 3297411, 5538254, 9195371, 15104245, 24561098, 39562657, 63160404, 99987453, 157029090, 244754385, 378754786, 582124254, 888874067, 1348842728 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A bisection of A341710.
LINKS
MAPLE
with(numtheory):
b:= proc(n) option remember; nops(invphi(n)) end:
g:= proc(n) option remember; `if`(n=0, 1, add(
g(n-j)*add(d*b(d), d=divisors(j)), j=1..n)/n)
end:
a:= n-> g(2*n)/2:
seq(a(n), n=1..40); # Alois P. Heinz, Feb 19 2021
MATHEMATICA
terms = 64; (* number of terms of A120963 *)
nmax = Floor[terms/2];
S[m_] := S[m] = CoefficientList[Product[1/(1 - x^EulerPhi[k]),
{k, 1, m*terms}] + O[x]^(terms+1), x];
S[m = 1];
S[m++];
While[S[m] != S[m-1], m++];
A120963 = S[m];
a[n_ /; 1 <= n <= nmax] := A120963[[2n+1]]/2;
Table[a[n], {n, 1, nmax}] (* Jean-François Alcover, May 12 2022 *)
CROSSREFS
Sequence in context: A129014 A335412 A332376 * A261384 A055294 A029858
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 19 2021
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 25 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)