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!)
A095374 One less than the number of divisors of 2*n + 1. 4
1, 1, 1, 2, 1, 1, 3, 1, 1, 3, 1, 2, 3, 1, 1, 3, 3, 1, 3, 1, 1, 5, 1, 2, 3, 1, 3, 3, 1, 1, 5, 3, 1, 3, 1, 1, 5, 3, 1, 4, 1, 3, 3, 1, 3, 3, 3, 1, 5, 1, 1, 7, 1, 1, 3, 1, 3, 5, 3, 2, 3, 3, 1, 3, 1, 3, 7, 1, 1, 3, 3, 3, 5, 1, 1, 5, 3, 1, 3, 3, 1, 7, 1, 2, 5, 1, 5 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Number of special divisors of A095372(n) with A095372(k) form.
LINKS
Gerzson Kéri, The factorization of compressed Chebyshev polynomials and other polynomials related to multiple-angle formulas, Annales Univ. Sci. Budapest (Hungary, 2022) Sect. Comp., Vol. 53, 93-108.
FORMULA
a(n) = A023645(2*n + 1) = A000005(2*n + 1) - 1.
a(n) = Sum_{i=1..n} 1-ceiling((n+i)/(n-i+1))+floor((n+i)/(n-i+1)). - Wesley Ivan Hurt, Feb 26 2017
O.g.f.: Sum_{n >= 1} x^n/(1 - x^(2*n+1)) = x/(1 - x) + Sum_{n >= 1} x^(2*n*(n+1))*(1 + x^(2*n+1))/(1 - x^(2*n+1)). - Peter Bala, Mar 04 2019
a(n) = A099774(n+1) - 1. - Bernard Schott, Mar 04 2019
EXAMPLE
A095372(22) is divisible by {91, 9091, 90909091, 90909090909091, A095372(22)}, thus a(22)=5.
G.f.= x + x^2 + x^3 + 2*x^4 + x^5 + x^6 + 3*x^7 + x^8 + x^9 + 3*x^10 + x^11 + 2*x^12 + ...
MATHEMATICA
g[x_]:=1+90*(100^x-1)/99 t=Table[1+90*(100^n-1)/99, {n, 1, 35}]; Do[Print[{w, is=Intersection[Divisors[g[w]], t], Length[is]}], {w, 1, 35}]
Table[DivisorSigma[0, 2n+1], {n, 90}]-1 (* Harvey P. Dale, Oct 31 2015 *)
Table[Sum[1 - Ceiling@ # + Floor@ # &[(n + i)/(n - i + 1)], {i, n}], {n, 87}] (* Michael De Vlieger, Feb 27 2017 *)
PROG
(PARI) {a(n) = if( n<0, 0, numdiv(2*n + 1) - 1)} /* Michael Somos, Aug 30 2012 */
CROSSREFS
Sequence in context: A212630 A030360 A232529 * A352063 A300650 A363528
KEYWORD
nonn,easy
AUTHOR
Labos Elemer, Jun 07 2004
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 06:14 EDT 2024. Contains 371964 sequences. (Running on oeis4.)