If you look in the parallel input files IXXX_YYYY, and look just past the end of the mesh. If you find a block of values after the keyword EQUAtion they will give the local partition node number followed by the global equation numbers for each dof attached to the local partition node. This data is output for AIJ without bc-equations "in".
If the AIJ case with boundary equations in, then the data is computed using the information in the last column of the LOCAl to GLOBal data. You can find the exact computation in pdomain.F; search for "if(noeq)". Essentially the way it works for your case is the data is
local_node_#, global_node_#, global_eq_#_for_last_dof_on_node_divided_by_ndf
Thus if you want to know the global equation numbers for a given local node, multiply the last entry by ndf this will give the global equation number for the last dof on the node. Iteratively subtract from this value to get the equation numbers for the other dofs on the node.
What is probably easiest is to note that when the code exists pdomain.F, the needed data is contained in the integer array pointed to by np(245). It is arranged as an ndf x numnp array where each column is associated with a local partition node and each row corresponds to each dof. The entries of the array are the global equation numbers.