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!)
A209662 a(n) = (-1)^A083025(n)*n. 5
1, 2, 3, 4, -5, 6, 7, 8, 9, -10, 11, 12, -13, 14, -15, 16, -17, 18, 19, -20, 21, 22, 23, 24, 25, -26, 27, 28, -29, -30, 31, 32, 33, -34, -35, 36, -37, 38, -39, -40, -41, 42, 43, 44, -45, 46, 47, 48, 49, 50, -51, -52, -53, 54, -55, 56, 57, -58, 59, -60, -61, 62, 63, 64, 65 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Also denominators of an infinite series which is equal to pi, if the numerators are 1, 1, 1,..., for example: pi = 1/1 + 1/2 + 1/3 + 1/4 + 1/(-5) + 1/6 + 1/7 + 1/8 + 1/9 + 1/(-10) + 1/11 + 1/12 + 1/(-13) + 1/14 ... = 3.14159263... This arises from an infinite series due to Leonhard Euler which is given by: Pi = 1/1 + 1/2 + 1/3 + 1/4 - 1/5 + 1/6 + 1/7 + 1/8 + 1/9 - 1/10 + 1/11 + 1/12 - 1/13 + 1/14 ... = 3.14159263... For another version see A209661.
a(n) = -n if n has an odd number of prime factors of the form 4k+1 (counted with multiplicity), else a(n) = n. - M. F. Hasler, Apr 15 2012
Completely multiplicative because A209661 is. - Andrew Howroyd, Aug 04 2018
REFERENCES
Leonhard Euler, Introductio in analysin infinitorum, 1748.
LINKS
FORMULA
a(n) = n*A209661(n).
EXAMPLE
For n = 10 we have that the 10th row of triangle A207338 is [2, -5] therefore a(10) = 2*(-5) = -10.
MATHEMATICA
f[p_, e_] := If[Mod[p, 4] == 1, (-1)^e, 1]; a[n_] := n * Times @@ f @@@ FactorInteger[n]; a[1] = 1; Array[a, 100] (* Amiram Eldar, Sep 06 2023 *)
PROG
(PARI) a(n)={my(f=factor(n)); n*prod(i=1, #f~, my([p, e]=f[i, ]); if(p%4==1, -1, 1)^e)} \\ Andrew Howroyd, Aug 04 2018
CROSSREFS
Row products of triangle A207338. Numerators are in A000012. Absolute values give A000027.
Sequence in context: A001489 A038608 A105811 * A272813 A258070 A258071
KEYWORD
sign,frac,easy,mult
AUTHOR
Omar E. Pol, Mar 15 2012
EXTENSIONS
Formula in sequence name from M. F. Hasler, Apr 16 2012
a(34) corrected by Ray Chandler, Mar 19 2016
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 May 3 09:32 EDT 2024. Contains 372207 sequences. (Running on oeis4.)