This is how I do it, It just checks if the week number (from epoch time) is even or odd.
[{"id":"aca5d241.720ec","type":"inject","z":"5f64b721.e82e98","name":"Bins out (Tuesday)","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"00 05 * * 2","once":false,"onceDelay":0.1,"x":150,"y":2320,"wires":[["596d6874.5747d8"]]},{"id":"596d6874.5747d8","type":"function","z":"5f64b721.e82e98","name":"Even or odd week?","func":"// get week number\nvar num = msg.payload/604800000; \n\n// is week even or odd\nmsg.payload = parseFloat(num.toFixed(0)) % 2 ;\n\n// return 0 or 1\nreturn msg;\n\n","outputs":1,"noerr":0,"x":370,"y":2320,"wires":[["752e1d02.588d64"]]},{"id":"752e1d02.588d64","type":"switch","z":"5f64b721.e82e98","name":"Even/odd","property":"payload","propertyType":"msg","rules":[{"t":"eq","v":"0","vt":"str"},{"t":"eq","v":"1","vt":"str"}],"checkall":"true","repair":false,"outputs":2,"x":560,"y":2320,"wires":[["d87776c1.bbf5b8"],["41bcd50d.214bac"]]},{"id":"38427428.c9ec4c","type":"comment","z":"5f64b721.e82e98","name":"Bin notification","info":"","x":140,"y":2220,"wires":[]},{"id":"abe6efcd.6959c","type":"inject","z":"5f64b721.e82e98","name":"Clear Bins (Wednesday)","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"00 05 * * 3","once":false,"onceDelay":0.1,"x":170,"y":2400,"wires":[["4f86c600.738a2c"]]},{"id":"4c797fc0.6ee1c","type":"comment","z":"5f64b721.e82e98","name":"Recycling/Green","info":"","x":560,"y":2360,"wires":[]},{"id":"4f86c600.738a2c","type":"api-call-service","z":"5f64b721.e82e98","name":"Set bins none","server":"","version":1,"debugenabled":false,"service_domain":"input_select","service":"select_option","entityId":"input_select.bins","data":"{\"option\":\"None\"}","dataType":"json","mergecontext":"","output_location":"payload","output_location_type":"msg","mustacheAltTags":false,"x":760,"y":2400,"wires":[[]]},{"id":"d87776c1.bbf5b8","type":"api-call-service","z":"5f64b721.e82e98","name":"Set bins recycling","server":"","version":1,"debugenabled":false,"service_domain":"input_select","service":"select_option","entityId":"input_select.bins","data":"{\"option\":\"Recycling\"}","dataType":"json","mergecontext":"","output_location":"payload","output_location_type":"msg","mustacheAltTags":false,"x":770,"y":2300,"wires":[[]]},{"id":"41bcd50d.214bac","type":"api-call-service","z":"5f64b721.e82e98","name":"Set bins garden","server":"","version":"1","debugenabled":false,"service_domain":"input_select","service":"select_option","entityId":"input_select.bins","data":"{\"option\":\"Garden\"}","dataType":"json","mergecontext":"","output_location":"payload","output_location_type":"msg","mustacheAltTags":false,"x":760,"y":2340,"wires":[[]]},{"id":"3a167df0.4b44b2","type":"inject","z":"5f64b721.e82e98","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":560,"y":2280,"wires":[["41bcd50d.214bac"]]},{"id":"a557e173.f6b8d","type":"inject","z":"5f64b721.e82e98","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":560,"y":2240,"wires":[["d87776c1.bbf5b8"]]}]