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!)
A335283 a(n) = 1 + Sum_{d|n, n/d odd, d < n} a(d). 2
1, 1, 2, 1, 2, 2, 2, 1, 4, 2, 2, 2, 2, 2, 6, 1, 2, 4, 2, 2, 6, 2, 2, 2, 4, 2, 8, 2, 2, 6, 2, 1, 6, 2, 6, 4, 2, 2, 6, 2, 2, 6, 2, 2, 16, 2, 2, 2, 4, 4, 6, 2, 2, 8, 6, 2, 6, 2, 2, 6, 2, 2, 16, 1, 6, 6, 2, 2, 6, 6, 2, 4, 2, 2, 16, 2, 6, 6, 2, 2, 16, 2, 2, 6, 6, 2, 6, 2, 2, 16, 6, 2, 6, 2, 6, 2, 2, 4, 16, 4, 2, 6, 2, 2, 26 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x / (1 - x) + Sum_{k>=2} A(x^(2*k-1)).
G.f.: x / (1 - x) + Sum_{n>=1} a(n) * x^(3*n) / (1 - x^(2*n)).
a(1) = 1; a(2*n) = a(n), a(2*n+1) = 2 * A074206(2*n+1).
MATHEMATICA
a[n_] := 1 + Sum[If[d < n && OddQ[n/d], a[d], 0], {d, Divisors[n]}]; Table[a[n], {n, 85}]
terms = 85; A[_] = 0; Do[A[x_] = x/(1 - x) + Sum[A[x^(2 k - 1)], {k, 2, terms}] + O[x]^(terms + 1) // Normal, terms + 1]; CoefficientList[A[x], x] // Rest
PROG
(PARI)
up_to = 20000;
A335283lista(up_to) = {my(v = vector(up_to)); for(n=1, up_to, v[n] = 1 + sumdiv(n, d, if(d<n&&((n/d)%2), v[d], 0))); (v); };
v335283 = A335283lista(up_to);
A335283(n) = v335283[n]; \\ Antti Karttunen, Dec 09 2021
CROSSREFS
Cf. A000079 (positions of 1's), A038550 (positions of 2's), A067824, A074206, A209229, A307779, A335062.
Sequence in context: A218654 A054571 A336158 * A126865 A104640 A193335
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 30 2020
EXTENSIONS
More terms from Antti Karttunen, Dec 09 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 September 1 14:36 EDT 2024. Contains 375591 sequences. (Running on oeis4.)