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!)
A182390 a(0)=0, a(n) = (a(n-1) * n) XOR n. 2
0, 1, 0, 3, 8, 45, 264, 1855, 14832, 133497, 1334960, 14684571, 176214856, 2290793125, 32071103752, 481066556279, 7697064900448, 130850103307633, 2355301859537376, 44750735331210163, 895014706624203240, 18795308839108268061, 413496794460381897320 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,4

COMMENTS

For 0<n<12, a(n)=A000240(n-1).

LINKS

Harvey P. Dale, Table of n, a(n) for n = 0..450

FORMULA

a(0)=0, a(n) = (a(n-1) * n) XOR n, where XOR is the bitwise exclusive-OR operator.

MATHEMATICA

nxt[{n_, a_}]:={n+1, BitXor[a(n+1), n+1]}; NestList[nxt, {0, 0}, 30][[;; , 2]] (* Harvey P. Dale, Mar 14 2023 *)

PROG

(Python)

a=0

for i in range(1, 55):

. print a,

. a *= i

. a ^= i

CROSSREFS

Cf. A182249, A000240.

Sequence in context: A039647 A071533 A000240 * A132103 A334316 A180508

Adjacent sequences: A182387 A182388 A182389 * A182391 A182392 A182393

KEYWORD

nonn,base,changed

AUTHOR

Alex Ratushnyak, Apr 27 2012

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 March 22 18:49 EDT 2023. Contains 361433 sequences. (Running on oeis4.)