eqns = {Derivative[4][f][y] - 2 Derivative[2][f][y] a^2 +
a^2 (-r y + a^2) f[y] == 0,y=0, f[y] == 0,
Derivative[3][f][y] - Derivative[1][f][y] a^2 == 0,
Derivative[1][f][y] == 1,
Derivative[2][f][y] == \[Gamma]};
sol[r_?NumericQ, \[Gamma]_?NumericQ] :=
NDSolve[eqns, {f}, {y, 0, 100}, Method -> "BDF",
MaxSteps -> Infinity, InterpolationOrder -> All,
WorkingPrecision -> 30];
Off[ReplaceAll::reps];
a = 5;
Plot[Evaluate[{y = 1, f[y] = 0, f''[y] = 0} /. sol], {y, 0, 50}]
I have to find the plot of (r,a).