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!)
A004444 Nimsum n + 3. 5
3, 2, 1, 0, 7, 6, 5, 4, 11, 10, 9, 8, 15, 14, 13, 12, 19, 18, 17, 16, 23, 22, 21, 20, 27, 26, 25, 24, 31, 30, 29, 28, 35, 34, 33, 32, 39, 38, 37, 36, 43, 42, 41, 40, 47, 46, 45, 44, 51, 50, 49, 48, 55, 54, 53, 52, 59, 58, 57, 56, 63, 62, 61, 60, 67, 66, 65, 64, 71 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The same as A120634 except for first 3 terms. - Pietro Battiston, Jan 19 2008
Permutation of the nonnegative integers. - Wesley Ivan Hurt, Apr 06 2016
REFERENCES
E. R. Berlekamp, J. H. Conway and R. K. Guy, Winning Ways, Academic Press, NY, 2 vols., 1982, see p. 60.
J. H. Conway, On Numbers and Games. Academic Press, NY, 1976, pp. 51-53.
LINKS
FORMULA
G.f.: (4*x^4-x^3-x^2-x+3)/((x-1)^2*(x+1)*(x^2+1)). - Ralf Stephan, Nov 01 2003
a(n) = n + (-1)^n + 2*(-1)^floor(n/2). - Mitchell Harris, Jan 10 2005
From Wesley Ivan Hurt, Apr 06 2016: (Start)
a(n) = a(n-1) + a(n-4) - a(n-5) for n>4.
a(n) = n + (-1)^n + 2*(-1)^((2*n-1+(-1)^n)/4).
a(n) = A004442(A004443(n)) = A004443(A004442(n)).
a(a(n)) = n; n+a(n) = A004442(n) + A004443(n). (End)
a(n) = n XOR 3. - Falk Hüffner, Jan 23 2022
MAPLE
A004444:=n->n+(-1)^n+2*(-1)^floor(n/2): seq(A004444(n), n=0..50); # Wesley Ivan Hurt, Apr 06 2016
MATHEMATICA
CoefficientList[Series[(4x^4-x^3-x^2-x+3)/((x-1)^2(x+1) (x^2+1)), {x, 0, 70}], x] (* Harvey P. Dale, Mar 24 2011 *)
Table[n + (-1)^n + 2 (-1)^Floor[n/2], {n, 0, 100}] (* Wesley Ivan Hurt, Apr 06 2016 *)
PROG
(Magma) [n + (-1)^n + 2*(-1)^Floor(n/2): n in [0..100]]; // Wesley Ivan Hurt, Apr 06 2016
(PARI) Vec((4*x^4-x^3-x^2-x+3)/((x-1)^2*(x+1)*(x^2+1)) + O(x^90)) \\ Michel Marcus, Apr 06 2016
(Python)
def a(n): return n^3
print([a(n) for n in range(69)]) # Michael S. Branicky, Jan 23 2022
CROSSREFS
Cf. A004442 (nimsum n+1), A004443 (nimsum n+2), A120634.
Sequence in context: A098825 A111460 A035327 * A204533 A357079 A259790
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from Michael S. Branicky, Jan 23 2022
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 28 09:28 EDT 2024. Contains 372020 sequences. (Running on oeis4.)