Why does a C4467 transistor turn off slowly when collector-emitter current is low

You're over-saturating the transistor. In this context, saturation means \$V_{BE}>V_{CE} \$. If you imagine your NPN transistor as two diodes back-to-back as the image below shows, you can see that if you drive your base hard enough, \$V_{CE}\$ will drop to a very low voltage (e.g. 0.1 V). Since we are driving our base very hard, \$V_{BE}\$ might be about 0.75V. That gives us a \$V_{BC}\$ of 0.65 V, and that diode will begin conducting.

schematic

simulate this circuit – Schematic created using CircuitLab

The problem with this diode saturating is that it will suffer from reverse-recovery. It will not stop conducting until all the charges are drawn out of the diode, which feeds the base voltage through the collector.

The waveforms you gave provide good evidence that this is the case. Consider that your base current is around 50mA (Using this instead of the actual 43mA because there are curves on the datasheet for 50mA). With an approximately 2 A load, you will have a \$V_{CE}\$ of about 0.18 V. Your second test using a 10kΩ resistor would have a \$V_{CE}\$ near 0 V. Because of that, more current is flowing from the base to the emitter through the base-collector diode with the lighter load. However, both cases are over-saturated as both have a small notch in the voltage waveform immediately after turn-off begins.

Another factor is that with the 6Ω resistor, you can exit the reverse-recovery mode of the base-emitter diode faster because you can get rid of the extra carriers faster. This is probably the main reason for the turn-off time differences.

Ultimately, this will be difficult to tackle from the base drive side, as you need that base resistor. A possible work-around is to put a diode in parallel with the base resistor to provide better drive during turn-off. This was a common problem in old TTL logic, and Schottky diodes were placed in the circuit to prevent saturation (and speed up the logic). This showed up in so-called Schottky transistors that implemented a Baker clamp. It's important to use Schottky diodes for this purpose as they have a much lower forward voltage than the internal diode structures (0.25V for the Schottky compared to 0.6V for a standard silicon diode). Otherwise you will have two saturated diodes fighting your base signal.

schematic

simulate this circuit