in reply to Looking up an array of keys with a Hash reference

It looks like you're trying to dereference twice (@{$Href}->{ (1,3) }). Try this instead:

my @A = @{ $Href }{ 1, 3 };

I asked a similar question a while ago. The responses in that thread may be of interest, especially if you have more complex data structures.

HTH